Home
last modified time | relevance | path

Searched refs:B (Results 1 – 25 of 2120) sorted by relevance

12345678910>>...85

/NextBSD/crypto/openssl/doc/crypto/
HDbn_internal.pod69 B<BIGNUM> implementation. They are described here to facilitate
88 The integer value is stored in B<d>, a malloc()ed array of words (B<BN_ULONG>),
89 least significant word first. A B<BN_ULONG> can be either 16, 32 or 64 bits
90 in size, depending on the 'number of bits' (B<BITS2>) specified in
93 B<dmax> is the size of the B<d> array that has been allocated. B<top>
95 bn.top=1. B<neg> is 1 if the number is negative. When a B<BIGNUM> is
96 B<0>, the B<d> field can be B<NULL> and B<top> == B<0>.
98 B<flags> is a bit field of flags which are defined in C<openssl/bn.h>. The
99 flags begin with B<BN_FLG_>. The macros BN_set_flags(b,n) and
100 BN_get_flags(b,n) exist to enable or fetch flag(s) B<n> from B<BIGNUM>
[all …]
HDASN1_generate_nconf.pod17 in an B<ASN1_TYPE> structure.
19 B<str> contains the string to encode B<nconf> or B<cnf> contains
21 will be read from. B<nconf> will typically come from a config
22 file wherease B<cnf> is obtained from an B<X509V3_CTX> structure
24 functions. B<cnf> or B<nconf> can be set to B<NULL> if no additional
29 The actual data encoded is determined by the string B<str> and
35 =item B<[modifier,]type[:value]>
40 followed by an optional colon and a value. The formats of B<type>,
41 B<value> and B<modifier> are explained below.
46 only the B<ASCII> format is permissible.
[all …]
/NextBSD/crypto/openssl/crypto/ripemd/
HDrmd_dgst.c77 c->B = RIPEMD160_B; in fips_md_init()
91 register unsigned MD32_REG_T A, B, C, D, E; in ripemd160_block_data_order() local
106 B = ctx->B; in ripemd160_block_data_order()
115 RIP1(A, B, C, D, E, WL00, SL00); in ripemd160_block_data_order()
118 RIP1(E, A, B, C, D, WL01, SL01); in ripemd160_block_data_order()
121 RIP1(D, E, A, B, C, WL02, SL02); in ripemd160_block_data_order()
124 RIP1(C, D, E, A, B, WL03, SL03); in ripemd160_block_data_order()
127 RIP1(B, C, D, E, A, WL04, SL04); in ripemd160_block_data_order()
130 RIP1(A, B, C, D, E, WL05, SL05); in ripemd160_block_data_order()
133 RIP1(E, A, B, C, D, WL06, SL06); in ripemd160_block_data_order()
[all …]
/NextBSD/crypto/openssl/crypto/md5/
HDmd5_dgst.c79 c->B = INIT_DATA_B; in fips_md_init()
92 register unsigned MD32_REG_T A, B, C, D, l; in md5_block_data_order() local
104 B = c->B; in md5_block_data_order()
114 R0(A, B, C, D, X(0), 7, 0xd76aa478L); in md5_block_data_order()
117 R0(D, A, B, C, X(1), 12, 0xe8c7b756L); in md5_block_data_order()
120 R0(C, D, A, B, X(2), 17, 0x242070dbL); in md5_block_data_order()
123 R0(B, C, D, A, X(3), 22, 0xc1bdceeeL); in md5_block_data_order()
126 R0(A, B, C, D, X(4), 7, 0xf57c0fafL); in md5_block_data_order()
129 R0(D, A, B, C, X(5), 12, 0x4787c62aL); in md5_block_data_order()
132 R0(C, D, A, B, X(6), 17, 0xa8304613L); in md5_block_data_order()
[all …]
/NextBSD/crypto/openssl/doc/ssl/
HDssl.pod12 The OpenSSL B<ssl> library implements the Secure Sockets Layer (SSL v2/v3) and
19 Then an B<SSL_CTX> object is created as a framework to establish
25 B<SSL> object. After the B<SSL> object has been created using
40 Currently the OpenSSL B<ssl> library functions deals with the following data
45 =item B<SSL_METHOD> (SSL Method)
47 That's a dispatch structure describing the internal B<ssl> library
49 and TLSv1). It's needed to create an B<SSL_CTX>.
51 =item B<SSL_CIPHER> (SSL Cipher)
55 on a B<SSL_CTX> basis and the actually used ones are then part of the
56 B<SSL_SESSION>.
[all …]
HDSSL_CONF_cmd.pod17 The function SSL_CONF_cmd() performs configuration operation B<cmd> with
18 optional parameter B<value> on B<ctx>. Its purpose is to simplify application
19 configuration of B<SSL_CTX> or B<SSL> structures by providing a common
22 SSL_CONF_cmd_value_type() returns the type of value that B<cmd> refers to.
30 Currently supported B<cmd> names for command lines (i.e. when the
31 flag B<SSL_CONF_CMDLINE> is set) are listed below. Note: all B<cmd> names
33 both clients and servers and the B<value> parameter is not used. The default
34 prefix for command line commands is B<-> and that is reflected below.
38 =item B<-sigalgs>
44 The B<value> argument should be a colon separated list of signature algorithms
[all …]
/NextBSD/lib/libmd/
HDrmd160c.c95 c->B=RIPEMD160_B;
280 u_int32_t A,B,C,D,E; local
285 A=ctx->A; B=ctx->B; C=ctx->C; D=ctx->D; E=ctx->E;
287 RIP1(A,B,C,D,E,WL00,SL00);
288 RIP1(E,A,B,C,D,WL01,SL01);
289 RIP1(D,E,A,B,C,WL02,SL02);
290 RIP1(C,D,E,A,B,WL03,SL03);
291 RIP1(B,C,D,E,A,WL04,SL04);
292 RIP1(A,B,C,D,E,WL05,SL05);
293 RIP1(E,A,B,C,D,WL06,SL06);
[all …]
/NextBSD/crypto/openssl/crypto/md4/
HDmd4_dgst.c79 c->B = INIT_DATA_B; in fips_md_init()
92 register unsigned MD32_REG_T A, B, C, D, l; in md4_block_data_order() local
104 B = c->B; in md4_block_data_order()
114 R0(A, B, C, D, X(0), 3, 0); in md4_block_data_order()
117 R0(D, A, B, C, X(1), 7, 0); in md4_block_data_order()
120 R0(C, D, A, B, X(2), 11, 0); in md4_block_data_order()
123 R0(B, C, D, A, X(3), 19, 0); in md4_block_data_order()
126 R0(A, B, C, D, X(4), 3, 0); in md4_block_data_order()
129 R0(D, A, B, C, X(5), 7, 0); in md4_block_data_order()
132 R0(C, D, A, B, X(6), 11, 0); in md4_block_data_order()
[all …]
/NextBSD/crypto/openssl/doc/apps/
HDspeed.pod9 B<openssl speed>
10 [B<-engine id>]
11 [B<md2>]
12 [B<mdc2>]
13 [B<md5>]
14 [B<hmac>]
15 [B<sha1>]
16 [B<rmd160>]
17 [B<idea-cbc>]
18 [B<rc2-cbc>]
[all …]
HDocsp.pod9 B<openssl> B<ocsp>
10 [B<-out file>]
11 [B<-issuer file>]
12 [B<-cert file>]
13 [B<-serial n>]
14 [B<-signer file>]
15 [B<-signkey file>]
16 [B<-sign_other file>]
17 [B<-no_certs>]
18 [B<-req_text>]
[all …]
HDopenssl.pod10 B<openssl>
15 B<openssl> [ B<list-standard-commands> | B<list-message-digest-commands> | B<list-cipher-commands> …
17 B<openssl> B<no->I<XXX> [ I<arbitrary options> ]
25 The B<openssl> program is a command line tool for using the various
26 cryptography functions of OpenSSL's B<crypto> library from the shell.
40 The B<openssl> program provides a rich variety of commands (I<command> in the
44 The pseudo-commands B<list-standard-commands>, B<list-message-digest-commands>,
45 and B<list-cipher-commands> output a list (one entry per line) of the names
47 respectively, that are available in the present B<openssl> utility.
49 The pseudo-commands B<list-cipher-algorithms> and
[all …]
HDpasswd.pod9 B<openssl passwd>
10 [B<-crypt>]
11 [B<-1>]
12 [B<-apr1>]
13 [B<-salt> I<string>]
14 [B<-in> I<file>]
15 [B<-stdin>]
16 [B<-noverify>]
17 [B<-quiet>]
18 [B<-table>]
[all …]
HDs_client.pod10 B<openssl> B<s_client>
11 [B<-connect host:port>]
12 [B<-servername name>]
13 [B<-verify depth>]
14 [B<-verify_return_error>]
15 [B<-cert filename>]
16 [B<-certform DER|PEM>]
17 [B<-key filename>]
18 [B<-keyform DER|PEM>]
19 [B<-pass arg>]
[all …]
HDs_server.pod10 B<openssl> B<s_server>
11 [B<-accept port>]
12 [B<-context id>]
13 [B<-verify depth>]
14 [B<-Verify depth>]
15 [B<-crl_check>]
16 [B<-crl_check_all>]
17 [B<-cert filename>]
18 [B<-certform DER|PEM>]
19 [B<-key keyfile>]
[all …]
HDcms.pod9 B<openssl> B<cms>
10 [B<-encrypt>]
11 [B<-decrypt>]
12 [B<-sign>]
13 [B<-verify>]
14 [B<-cmsout>]
15 [B<-resign>]
16 [B<-data_create>]
17 [B<-data_out>]
18 [B<-digest_create>]
[all …]
HDx509.pod10 B<openssl> B<x509>
11 [B<-inform DER|PEM|NET>]
12 [B<-outform DER|PEM|NET>]
13 [B<-keyform DER|PEM>]
14 [B<-CAform DER|PEM>]
15 [B<-CAkeyform DER|PEM>]
16 [B<-in filename>]
17 [B<-out filename>]
18 [B<-serial>]
19 [B<-hash>]
[all …]
HDpkeyutl.pod9 B<openssl> B<pkeyutl>
10 [B<-in file>]
11 [B<-out file>]
12 [B<-sigfile file>]
13 [B<-inkey file>]
14 [B<-keyform PEM|DER>]
15 [B<-passin arg>]
16 [B<-peerkey file>]
17 [B<-peerform PEM|DER>]
18 [B<-pubin>]
[all …]
HDreq.pod10 B<openssl> B<req>
11 [B<-inform PEM|DER>]
12 [B<-outform PEM|DER>]
13 [B<-in filename>]
14 [B<-passin arg>]
15 [B<-out filename>]
16 [B<-passout arg>]
17 [B<-text>]
18 [B<-pubkey>]
19 [B<-noout>]
[all …]
/NextBSD/contrib/llvm/include/llvm/Transforms/Utils/
HDSimplifyLibCalls.h54 Value *optimizeMemCpyChk(CallInst *CI, IRBuilder<> &B);
55 Value *optimizeMemMoveChk(CallInst *CI, IRBuilder<> &B);
56 Value *optimizeMemSetChk(CallInst *CI, IRBuilder<> &B);
59 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc::Func Func);
60 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc::Func Func);
104 Value *optimizeStrCat(CallInst *CI, IRBuilder<> &B);
105 Value *optimizeStrNCat(CallInst *CI, IRBuilder<> &B);
106 Value *optimizeStrChr(CallInst *CI, IRBuilder<> &B);
107 Value *optimizeStrRChr(CallInst *CI, IRBuilder<> &B);
108 Value *optimizeStrCmp(CallInst *CI, IRBuilder<> &B);
[all …]
/NextBSD/crypto/openssl/crypto/ripemd/asm/
HDrmd-586.pl15 $B="esi";
73 local(%n)=($A,$E,$B,$A,$C,$B,$D,$C,$E,$D);
317 &mov($B, &DWP( 4,$tmp2,"",0));
349 &RIP1($A,$B,$C,$D,$E,$wl[ 0],$sl[ 0],-1);
350 &RIP1($E,$A,$B,$C,$D,$wl[ 1],$sl[ 1],0);
351 &RIP1($D,$E,$A,$B,$C,$wl[ 2],$sl[ 2],0);
352 &RIP1($C,$D,$E,$A,$B,$wl[ 3],$sl[ 3],0);
353 &RIP1($B,$C,$D,$E,$A,$wl[ 4],$sl[ 4],0);
354 &RIP1($A,$B,$C,$D,$E,$wl[ 5],$sl[ 5],0);
355 &RIP1($E,$A,$B,$C,$D,$wl[ 6],$sl[ 6],0);
[all …]
/NextBSD/contrib/llvm/lib/Transforms/Utils/
HDBuildLibCalls.cpp29 Value *llvm::CastToCStr(Value *V, IRBuilder<> &B) { in CastToCStr() argument
31 return B.CreateBitCast(V, B.getInt8PtrTy(AS), "cstr"); in CastToCStr()
36 Value *llvm::EmitStrLen(Value *Ptr, IRBuilder<> &B, const DataLayout &DL, in EmitStrLen() argument
41 Module *M = B.GetInsertBlock()->getParent()->getParent(); in EmitStrLen()
47 LLVMContext &Context = B.GetInsertBlock()->getContext(); in EmitStrLen()
50 DL.getIntPtrType(Context), B.getInt8PtrTy(), nullptr); in EmitStrLen()
51 CallInst *CI = B.CreateCall(StrLen, CastToCStr(Ptr, B), "strlen"); in EmitStrLen()
61 Value *llvm::EmitStrNLen(Value *Ptr, Value *MaxLen, IRBuilder<> &B, in EmitStrNLen() argument
66 Module *M = B.GetInsertBlock()->getParent()->getParent(); in EmitStrNLen()
72 LLVMContext &Context = B.GetInsertBlock()->getContext(); in EmitStrNLen()
[all …]
/NextBSD/crypto/openssl/crypto/md5/asm/
HDmd5-586.pl17 $B="ebx";
39 local(%n)=($A,$D,$B,$A,$C,$B,$D,$C);
193 &mov($B, &DWP( 4,$tmp1,"",0));
201 &R0(-2,$A,$B,$C,$D,$X, 0, 7,0xd76aa478);
202 &R0( 0,$D,$A,$B,$C,$X, 1,12,0xe8c7b756);
203 &R0( 0,$C,$D,$A,$B,$X, 2,17,0x242070db);
204 &R0( 0,$B,$C,$D,$A,$X, 3,22,0xc1bdceee);
205 &R0( 0,$A,$B,$C,$D,$X, 4, 7,0xf57c0faf);
206 &R0( 0,$D,$A,$B,$C,$X, 5,12,0x4787c62a);
207 &R0( 0,$C,$D,$A,$B,$X, 6,17,0xa8304613);
[all …]
/NextBSD/contrib/gcclibs/libiberty/
HDmd5.c68 ctx->B = (md5_uint32) 0xefcdab89; in md5_init_ctx()
85 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B); in md5_read_ctx()
277 md5_uint32 B = ctx->B; in md5_process_block() local
294 md5_uint32 B_save = B; in md5_process_block()
326 OP (A, B, C, D, 7, (md5_uint32) 0xd76aa478); in md5_process_block()
327 OP (D, A, B, C, 12, (md5_uint32) 0xe8c7b756); in md5_process_block()
328 OP (C, D, A, B, 17, (md5_uint32) 0x242070db); in md5_process_block()
329 OP (B, C, D, A, 22, (md5_uint32) 0xc1bdceee); in md5_process_block()
330 OP (A, B, C, D, 7, (md5_uint32) 0xf57c0faf); in md5_process_block()
331 OP (D, A, B, C, 12, (md5_uint32) 0x4787c62a); in md5_process_block()
[all …]
/NextBSD/contrib/binutils/libiberty/
HDmd5.c68 ctx->B = (md5_uint32) 0xefcdab89; in md5_init_ctx()
85 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B); in md5_read_ctx()
277 md5_uint32 B = ctx->B; in md5_process_block() local
294 md5_uint32 B_save = B; in md5_process_block()
326 OP (A, B, C, D, 7, (md5_uint32) 0xd76aa478); in md5_process_block()
327 OP (D, A, B, C, 12, (md5_uint32) 0xe8c7b756); in md5_process_block()
328 OP (C, D, A, B, 17, (md5_uint32) 0x242070db); in md5_process_block()
329 OP (B, C, D, A, 22, (md5_uint32) 0xc1bdceee); in md5_process_block()
330 OP (A, B, C, D, 7, (md5_uint32) 0xf57c0faf); in md5_process_block()
331 OP (D, A, B, C, 12, (md5_uint32) 0x4787c62a); in md5_process_block()
[all …]
/NextBSD/crypto/openssl/crypto/des/
HDdes.pod9 B<des>
11 B<-e>
13 B<-E>
15 B<-d>
17 B<-D>
19 B<->[B<cC>][B<ckname>]
22 B<-b3hfs>
24 B<-k>
28 B<-u>[I<uuname>]
37 This page describes the B<des> stand-alone program, not the B<openssl des>
[all …]

12345678910>>...85