| /onnv-gate/usr/src/common/openssl/doc/crypto/ |
| H A D | bn_internal.pod | 67 B<BIGNUM> implementation. They are described here to facilitate 81 The integer value is stored in B<d>, a malloc()ed array of words (B<BN_ULONG>), 82 least significant word first. A B<BN_ULONG> can be either 16, 32 or 64 bits 83 in size, depending on the 'number of bits' (B<BITS2>) specified in 86 B<max> is the size of the B<d> array that has been allocated. B<top> 88 bn.top=1. B<neg> is 1 if the number is negative. When a B<BIGNUM> is 89 B<0>, the B<d> field can be B<NULL> and B<top> == B<0>. 92 B<BIGNUM> variables during their execution. Since dynamic memory 93 allocation to create B<BIGNUM>s is rather expensive when used in 94 conjunction with repeated subroutine calls, the B<BN_CTX> structure is [all …]
|
| H A D | ASN1_generate_nconf.pod | 15 in an B<ASN1_TYPE> structure. 17 B<str> contains the string to encode B<nconf> or B<cnf> contains 19 will be read from. B<nconf> will typically come from a config 20 file wherease B<cnf> is obtained from an B<X509V3_CTX> structure 22 functions. B<cnf> or B<nconf> can be set to B<NULL> if no additional 27 The actual data encoded is determined by the string B<str> and 31 B<[modifier,]type[:value]> 34 followed by an optional colon and a value. The formats of B<type>, 35 B<value> and B<modifier> are explained below. 40 only the B<ASCII> format is permissible. [all …]
|
| /onnv-gate/usr/src/common/openssl/crypto/md5/ |
| H A D | md5_dgst.c | 76 c->B=INIT_DATA_B; in MD5_Init() 89 register unsigned MD32_REG_T A,B,C,D; in md5_block_host_order() local 92 B=c->B; in md5_block_host_order() 99 R0(A,B,C,D,X[ 0], 7,0xd76aa478L); in md5_block_host_order() 100 R0(D,A,B,C,X[ 1],12,0xe8c7b756L); in md5_block_host_order() 101 R0(C,D,A,B,X[ 2],17,0x242070dbL); in md5_block_host_order() 102 R0(B,C,D,A,X[ 3],22,0xc1bdceeeL); in md5_block_host_order() 103 R0(A,B,C,D,X[ 4], 7,0xf57c0fafL); in md5_block_host_order() 104 R0(D,A,B,C,X[ 5],12,0x4787c62aL); in md5_block_host_order() 105 R0(C,D,A,B,X[ 6],17,0xa8304613L); in md5_block_host_order() [all …]
|
| /onnv-gate/usr/src/common/openssl/crypto/md4/ |
| H A D | md4_dgst.c | 76 c->B=INIT_DATA_B; in MD4_Init() 89 register unsigned MD32_REG_T A,B,C,D; in md4_block_host_order() local 92 B=c->B; in md4_block_host_order() 99 R0(A,B,C,D,X[ 0], 3,0); in md4_block_host_order() 100 R0(D,A,B,C,X[ 1], 7,0); in md4_block_host_order() 101 R0(C,D,A,B,X[ 2],11,0); in md4_block_host_order() 102 R0(B,C,D,A,X[ 3],19,0); in md4_block_host_order() 103 R0(A,B,C,D,X[ 4], 3,0); in md4_block_host_order() 104 R0(D,A,B,C,X[ 5], 7,0); in md4_block_host_order() 105 R0(C,D,A,B,X[ 6],11,0); in md4_block_host_order() [all …]
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/uni/ |
| H A D | tr_7jis.t | 39 my @hiragana = map {chr} ord("$B$!(B")..ord("$B$s(B"); 40 my @katakana = map {chr} ord("$B%!(B")..ord("$B%s(B"); 50 $str = $hiragana; $str =~ tr/$B$!(B-$B$s(B/$B%!(B-$B%s(B/; 52 $str = $katakana; $str =~ tr/$B%!(B-$B%s(B/$B$!(B-$B$s(B/; 55 $str = $hiragana; eval qq(\$str =~ tr/$B$!(B-$B$s(B/$B%!(B-$B%s(B/); 57 $str = $katakana; eval qq(\$str =~ tr/$B%!(B-$B%s(B/$B$!(B-$B$s(B/); 60 $str = $hiragana; $str =~ s/([$B$!(B-$B$s(B])/$h2k{$1}/go; 62 $str = $katakana; $str =~ s/([$B%!(B-$B%s(B])/$k2h{$1}/go;
|
| /onnv-gate/usr/src/common/openssl/crypto/ripemd/ |
| H A D | rmd_dgst.c | 75 c->B=RIPEMD160_B; in RIPEMD160_Init() 93 register unsigned MD32_REG_T A,B,C,D,E; in ripemd160_block_host_order() local 99 A=ctx->A; B=ctx->B; C=ctx->C; D=ctx->D; E=ctx->E; in ripemd160_block_host_order() 101 RIP1(A,B,C,D,E,WL00,SL00); in ripemd160_block_host_order() 102 RIP1(E,A,B,C,D,WL01,SL01); in ripemd160_block_host_order() 103 RIP1(D,E,A,B,C,WL02,SL02); in ripemd160_block_host_order() 104 RIP1(C,D,E,A,B,WL03,SL03); in ripemd160_block_host_order() 105 RIP1(B,C,D,E,A,WL04,SL04); in ripemd160_block_host_order() 106 RIP1(A,B,C,D,E,WL05,SL05); in ripemd160_block_host_order() 107 RIP1(E,A,B,C,D,WL06,SL06); in ripemd160_block_host_order() [all …]
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/B/ |
| H A D | B.xs | 481 MODULE = B PACKAGE = B PREFIX = B_ 521 B::AV 524 B::AV 527 B::AV 530 B::AV 533 B::GV 538 B::AV 543 B::CV 546 B::OP 549 B::OP [all …]
|
| H A D | typemap | 3 B::OP T_OP_OBJ 4 B::UNOP T_OP_OBJ 5 B::BINOP T_OP_OBJ 6 B::LOGOP T_OP_OBJ 7 B::LISTOP T_OP_OBJ 8 B::PMOP T_OP_OBJ 9 B::SVOP T_OP_OBJ 10 B::PADOP T_OP_OBJ 11 B::PVOP T_OP_OBJ 12 B::LOOP T_OP_OBJ [all …]
|
| H A D | B.pm | 8 package B; package 30 @B::SV::ISA = 'B::OBJECT'; 31 @B::NULL::ISA = 'B::SV'; 32 @B::PV::ISA = 'B::SV'; 33 @B::IV::ISA = 'B::SV'; 34 @B::NV::ISA = 'B::IV'; 35 @B::RV::ISA = 'B::SV'; 36 @B::PVIV::ISA = qw(B::PV B::IV); 37 @B::PVNV::ISA = qw(B::PV B::NV); 38 @B::PVMG::ISA = 'B::PVNV'; [all …]
|
| /onnv-gate/usr/src/common/openssl/doc/apps/ |
| H A D | speed.pod | 9 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 …]
|
| H A D | passwd.pod | 9 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 …]
|
| H A D | ocsp.pod | 9 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 …]
|
| H A D | s_client.pod | 10 B<openssl> B<s_client> 11 [B<-connect host:port>] 12 [B<-verify depth>] 13 [B<-cert filename>] 14 [B<-certform DER|PEM>] 15 [B<-key filename>] 16 [B<-keyform DER|PEM>] 17 [B<-pass arg>] 18 [B<-CApath directory>] 19 [B<-CAfile filename>] [all …]
|
| H A D | s_server.pod | 10 B<openssl> B<s_server> 11 [B<-accept port>] 12 [B<-context id>] 13 [B<-verify depth>] 14 [B<-Verify depth>] 15 [B<-cert filename>] 16 [B<-certform DER|PEM>] 17 [B<-key keyfile>] 18 [B<-keyform DER|PEM>] 19 [B<-pass arg>] [all …]
|
| H A D | openssl.pod | 10 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. 38 The B<openssl> program provides a rich variety of commands (I<command> in the 42 The pseudo-commands B<list-standard-commands>, B<list-message-digest-commands>, 43 and B<list-cipher-commands> output a list (one entry per line) of the names 45 respectively, that are available in the present B<openssl> utility. 47 The pseudo-command B<no->I<XXX> tests whether a command of the [all …]
|
| H A D | ecparam.pod | 9 B<openssl ecparam> 10 [B<-inform DER|PEM>] 11 [B<-outform DER|PEM>] 12 [B<-in filename>] 13 [B<-out filename>] 14 [B<-noout>] 15 [B<-text>] 16 [B<-C>] 17 [B<-check>] 18 [B<-name arg>] [all …]
|
| /onnv-gate/usr/src/common/openssl/doc/ssl/ |
| H A D | ssl.pod | 12 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 …]
|
| /onnv-gate/usr/src/common/openssl/crypto/ripemd/asm/ |
| H A D | rmd-586.pl | 14 $B="esi"; 72 local(%n)=($A,$E,$B,$A,$C,$B,$D,$C,$E,$D); 316 &mov($B, &DWP( 4,$tmp2,"",0)); 348 &RIP1($A,$B,$C,$D,$E,$wl[ 0],$sl[ 0],-1); 349 &RIP1($E,$A,$B,$C,$D,$wl[ 1],$sl[ 1],0); 350 &RIP1($D,$E,$A,$B,$C,$wl[ 2],$sl[ 2],0); 351 &RIP1($C,$D,$E,$A,$B,$wl[ 3],$sl[ 3],0); 352 &RIP1($B,$C,$D,$E,$A,$wl[ 4],$sl[ 4],0); 353 &RIP1($A,$B,$C,$D,$E,$wl[ 5],$sl[ 5],0); 354 &RIP1($E,$A,$B,$C,$D,$wl[ 6],$sl[ 6],0); [all …]
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/ |
| H A D | Debug.pm | 1 package B::Debug; 6 use B qw(peekop class walkoptree walkoptree_exec 8 use B::Asmdata qw(@specialsv_name); 12 sub B::OP::debug { subroutine 27 sub B::UNOP::debug { subroutine 29 $op->B::OP::debug(); 33 sub B::BINOP::debug { subroutine 35 $op->B::UNOP::debug(); 39 sub B::LOOP::debug { subroutine 41 $op->B::BINOP::debug(); [all …]
|
| H A D | Assembler.pm | 8 package B::Assembler; 10 use B qw(ppname); 11 use B::Asmdata qw(%insn_data @insn_name); 52 sub B::Asmdata::PUT_U8 { subroutine 67 sub B::Asmdata::PUT_U16 { subroutine 71 sub B::Asmdata::PUT_U32 { subroutine 75 sub B::Asmdata::PUT_I32 { subroutine 79 sub B::Asmdata::PUT_NV { sprintf("%s\0", $_[0]) } # "%lf" looses precision and pack('d',...) subroutine 81 sub B::Asmdata::PUT_objindex { # could allow names here subroutine 85 sub B::Asmdata::PUT_svindex { &B::Asmdata::PUT_objindex } subroutine [all …]
|
| /onnv-gate/usr/src/common/openssl/crypto/sha/asm/ |
| H A D | sha1-586.pl | 36 $B="ecx"; 54 local(%n)=($A,$T,$B,$A,$C,$B,$D,$C,$E,$D,$T,$E); 61 local(%n)=($A,$T,$B,$A,$C,$B,$D,$C,$E,$D,$T,$E); 62 local(%n)=($A,$B,$B,$C,$C,$D,$D,$E,$E,$T,$T,$A); 84 &mov($B,&DWP(($i+1)*4,$in,"",0)); 86 &bswap($B); 88 &mov(&swtmp($i+1),$B); 242 &mov($B,&DWP(($i+1)*4,"esi","",0)); 244 &mov(&swtmp($i+1),$B); 292 &mov($B, &DWP( 4,"ebp","",0)); [all …]
|
| /onnv-gate/usr/src/common/openssl/crypto/md5/asm/ |
| H A D | md5-586.pl | 16 $B="ebx"; 38 local(%n)=($A,$D,$B,$A,$C,$B,$D,$C); 192 &mov($B, &DWP( 4,$tmp1,"",0)); 200 &R0(-2,$A,$B,$C,$D,$X, 0, 7,0xd76aa478); 201 &R0( 0,$D,$A,$B,$C,$X, 1,12,0xe8c7b756); 202 &R0( 0,$C,$D,$A,$B,$X, 2,17,0x242070db); 203 &R0( 0,$B,$C,$D,$A,$X, 3,22,0xc1bdceee); 204 &R0( 0,$A,$B,$C,$D,$X, 4, 7,0xf57c0faf); 205 &R0( 0,$D,$A,$B,$C,$X, 5,12,0x4787c62a); 206 &R0( 0,$C,$D,$A,$B,$X, 6,17,0xa8304613); [all …]
|
| H A D | md5-sparcv9.S | 44 #define B %o1 macro 115 ld [Bptr],B 129 and T1,B,T1 139 xor B,C,T1 140 add A,B,A 153 xor A,B,T1 159 xor T1,B,T1 177 add B,T1,B != 178 sll B,22,T2 179 srl B,32-22,B [all …]
|
| /onnv-gate/usr/src/common/openssl/crypto/sha/ |
| H A D | sha_locl.h | 236 register unsigned MD32_REG_T A,B,C,D,E,T; in HASH_BLOCK_HOST_ORDER() local 245 B=c->h1; in HASH_BLOCK_HOST_ORDER() 252 BODY_00_15( 0,A,B,C,D,E,T,W[ 0]); in HASH_BLOCK_HOST_ORDER() 253 BODY_00_15( 1,T,A,B,C,D,E,W[ 1]); in HASH_BLOCK_HOST_ORDER() 254 BODY_00_15( 2,E,T,A,B,C,D,W[ 2]); in HASH_BLOCK_HOST_ORDER() 255 BODY_00_15( 3,D,E,T,A,B,C,W[ 3]); in HASH_BLOCK_HOST_ORDER() 256 BODY_00_15( 4,C,D,E,T,A,B,W[ 4]); in HASH_BLOCK_HOST_ORDER() 257 BODY_00_15( 5,B,C,D,E,T,A,W[ 5]); in HASH_BLOCK_HOST_ORDER() 258 BODY_00_15( 6,A,B,C,D,E,T,W[ 6]); in HASH_BLOCK_HOST_ORDER() 259 BODY_00_15( 7,T,A,B,C,D,E,W[ 7]); in HASH_BLOCK_HOST_ORDER() [all …]
|
| /onnv-gate/usr/src/common/openssl/crypto/des/ |
| H A D | des.pod | 9 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 …]
|