/openssl-master/crypto/des/ |
A D | cfb64ede.c | 43 ti[1] = v1; in DES_ede3_cfb64_encrypt() 107 c2l(iv, v1); in DES_ede3_cfb_encrypt() 112 ti[1] = v1; in DES_ede3_cfb_encrypt() 125 v0 = v1; in DES_ede3_cfb_encrypt() 126 v1 = d0; in DES_ede3_cfb_encrypt() 129 v1 = d1; in DES_ede3_cfb_encrypt() 153 ti[1] = v1; in DES_ede3_cfb_encrypt() 162 v0 = v1; in DES_ede3_cfb_encrypt() 163 v1 = d0; in DES_ede3_cfb_encrypt() 166 v1 = d1; in DES_ede3_cfb_encrypt() [all …]
|
A D | cfb_enc.c | 56 c2l(iv, v1); in DES_cfb_encrypt() 61 ti[1] = v1; in DES_cfb_encrypt() 74 v0 = v1; in DES_cfb_encrypt() 75 v1 = d0; in DES_cfb_encrypt() 78 v1 = d1; in DES_cfb_encrypt() 83 l2c(v1, iv); in DES_cfb_encrypt() 108 ti[1] = v1; in DES_cfb_encrypt() 117 v0 = v1; in DES_cfb_encrypt() 118 v1 = d0; in DES_cfb_encrypt() 121 v1 = d1; in DES_cfb_encrypt() [all …]
|
A D | ofb_enc.c | 28 register DES_LONG d0, d1, vv0, vv1, v0, v1, n = (numbits + 7) / 8; in DES_ofb_encrypt() local 53 c2l(iv, v1); in DES_ofb_encrypt() 55 ti[1] = v1; in DES_ofb_encrypt() 58 ti[1] = v1; in DES_ofb_encrypt() 70 v0 = v1; in DES_ofb_encrypt() 71 v1 = vv0; in DES_ofb_encrypt() 74 v1 = vv1; in DES_ofb_encrypt() 80 v0 = ((v0 >> num) | (v1 << (32 - num))) & 0xffffffffL; in DES_ofb_encrypt() 81 v1 = ((v1 >> num) | (vv0 << (32 - num))) & 0xffffffffL; in DES_ofb_encrypt() 86 l2c(v1, iv); in DES_ofb_encrypt() [all …]
|
A D | ofb64ede.c | 28 register DES_LONG v0, v1; in DES_ede3_ofb64_encrypt() local 39 c2l(iv, v1); in DES_ede3_ofb64_encrypt() 41 ti[1] = v1; in DES_ede3_ofb64_encrypt() 44 l2c(v1, dp); in DES_ede3_ofb64_encrypt() 51 v1 = ti[1]; in DES_ede3_ofb64_encrypt() 55 l2c(v1, dp); in DES_ede3_ofb64_encrypt() 64 l2c(v1, iv); in DES_ede3_ofb64_encrypt() 66 v0 = v1 = ti[0] = ti[1] = 0; in DES_ede3_ofb64_encrypt()
|
A D | ofb64enc.c | 27 register DES_LONG v0, v1, t; in DES_ofb64_encrypt() local 38 c2l(iv, v1); in DES_ofb64_encrypt() 40 ti[1] = v1; in DES_ofb64_encrypt() 43 l2c(v1, dp); in DES_ofb64_encrypt() 59 v1 = ti[1]; in DES_ofb64_encrypt() 62 l2c(v1, iv); in DES_ofb64_encrypt() 64 t = v0 = v1 = ti[0] = ti[1] = 0; in DES_ofb64_encrypt()
|
A D | cfb64enc.c | 28 register DES_LONG v0, v1; in DES_cfb64_encrypt() local 40 c2l(iv, v1); in DES_cfb64_encrypt() 41 ti[1] = v1; in DES_cfb64_encrypt() 60 c2l(iv, v1); in DES_cfb64_encrypt() 61 ti[1] = v1; in DES_cfb64_encrypt() 77 v0 = v1 = ti[0] = ti[1] = c = cc = 0; in DES_cfb64_encrypt()
|
/openssl-master/crypto/siphash/ |
A D | siphash.c | 53 v1 = ROTL(v1, 13); \ 63 v1 = ROTL(v1, 17); \ 102 ctx->v1 ^= 0xee; in SipHash_set_hash_size() 129 ctx->v1 = 0x646f72616e646f6dULL ^ k1; in SipHash_Init() 134 ctx->v1 ^= 0xee; in SipHash_Init() 146 uint64_t v1 = ctx->v1; in SipHash_Update() local 192 ctx->v1 = v1; in SipHash_Update() 203 uint64_t v1 = ctx->v1; in SipHash_Final() local 245 b = v0 ^ v1 ^ v2 ^ v3; in SipHash_Final() 249 v1 ^= 0xdd; in SipHash_Final() [all …]
|
/openssl-master/crypto/rc2/ |
A D | rc2ofb64.c | 28 register unsigned long v0, v1, t; in RC2_ofb64_encrypt() local 39 c2l(iv, v1); in RC2_ofb64_encrypt() 41 ti[1] = v1; in RC2_ofb64_encrypt() 44 l2c(v1, dp); in RC2_ofb64_encrypt() 60 v1 = ti[1]; in RC2_ofb64_encrypt() 63 l2c(v1, iv); in RC2_ofb64_encrypt() 65 t = v0 = v1 = ti[0] = ti[1] = 0; in RC2_ofb64_encrypt()
|
A D | rc2cfb64.c | 29 register unsigned long v0, v1, t; in RC2_cfb64_encrypt() local 41 c2l(iv, v1); in RC2_cfb64_encrypt() 42 ti[1] = v1; in RC2_cfb64_encrypt() 61 c2l(iv, v1); in RC2_cfb64_encrypt() 62 ti[1] = v1; in RC2_cfb64_encrypt() 78 v0 = v1 = ti[0] = ti[1] = t = c = cc = 0; in RC2_cfb64_encrypt()
|
/openssl-master/crypto/bf/ |
A D | bf_ofb64.c | 28 register BF_LONG v0, v1, t; in BF_ofb64_encrypt() local 39 n2l(iv, v1); in BF_ofb64_encrypt() 41 ti[1] = v1; in BF_ofb64_encrypt() 44 l2n(v1, dp); in BF_ofb64_encrypt() 60 v1 = ti[1]; in BF_ofb64_encrypt() 63 l2n(v1, iv); in BF_ofb64_encrypt() 65 t = v0 = v1 = ti[0] = ti[1] = 0; in BF_ofb64_encrypt()
|
A D | bf_cfb64.c | 29 register BF_LONG v0, v1, t; in BF_cfb64_encrypt() local 41 n2l(iv, v1); in BF_cfb64_encrypt() 42 ti[1] = v1; in BF_cfb64_encrypt() 61 n2l(iv, v1); in BF_cfb64_encrypt() 62 ti[1] = v1; in BF_cfb64_encrypt() 78 v0 = v1 = ti[0] = ti[1] = t = c = cc = 0; in BF_cfb64_encrypt()
|
/openssl-master/crypto/cast/ |
A D | c_ofb64.c | 28 register CAST_LONG v0, v1, t; in CAST_ofb64_encrypt() local 39 n2l(iv, v1); in CAST_ofb64_encrypt() 41 ti[1] = v1; in CAST_ofb64_encrypt() 44 l2n(v1, dp); in CAST_ofb64_encrypt() 60 v1 = ti[1]; in CAST_ofb64_encrypt() 63 l2n(v1, iv); in CAST_ofb64_encrypt() 65 t = v0 = v1 = ti[0] = ti[1] = 0; in CAST_ofb64_encrypt()
|
A D | c_cfb64.c | 29 register CAST_LONG v0, v1, t; in CAST_cfb64_encrypt() local 41 n2l(iv, v1); in CAST_cfb64_encrypt() 42 ti[1] = v1; in CAST_cfb64_encrypt() 61 n2l(iv, v1); in CAST_cfb64_encrypt() 62 ti[1] = v1; in CAST_cfb64_encrypt() 78 v0 = v1 = ti[0] = ti[1] = t = c = cc = 0; in CAST_cfb64_encrypt()
|
/openssl-master/crypto/rc5/ |
A D | rc5ofb64.c | 28 register unsigned long v0, v1, t; in RC5_32_ofb64_encrypt() local 39 c2l(iv, v1); in RC5_32_ofb64_encrypt() 41 ti[1] = v1; in RC5_32_ofb64_encrypt() 44 l2c(v1, dp); in RC5_32_ofb64_encrypt() 60 v1 = ti[1]; in RC5_32_ofb64_encrypt() 63 l2c(v1, iv); in RC5_32_ofb64_encrypt() 65 t = v0 = v1 = ti[0] = ti[1] = 0; in RC5_32_ofb64_encrypt()
|
A D | rc5cfb64.c | 29 register unsigned long v0, v1, t; in RC5_32_cfb64_encrypt() local 41 c2l(iv, v1); in RC5_32_cfb64_encrypt() 42 ti[1] = v1; in RC5_32_cfb64_encrypt() 61 c2l(iv, v1); in RC5_32_cfb64_encrypt() 62 ti[1] = v1; in RC5_32_cfb64_encrypt() 78 v0 = v1 = ti[0] = ti[1] = t = c = cc = 0; in RC5_32_cfb64_encrypt()
|
/openssl-master/crypto/idea/ |
A D | i_ofb64.c | 29 register unsigned long v0, v1, t; in IDEA_ofb64_encrypt() local 45 n2l(iv, v1); in IDEA_ofb64_encrypt() 47 ti[1] = v1; in IDEA_ofb64_encrypt() 50 l2n(v1, dp); in IDEA_ofb64_encrypt() 66 v1 = ti[1]; in IDEA_ofb64_encrypt() 69 l2n(v1, iv); in IDEA_ofb64_encrypt() 71 t = v0 = v1 = ti[0] = ti[1] = 0; in IDEA_ofb64_encrypt()
|
A D | i_cfb64.c | 30 register unsigned long v0, v1, t; in IDEA_cfb64_encrypt() local 47 n2l(iv, v1); in IDEA_cfb64_encrypt() 48 ti[1] = v1; in IDEA_cfb64_encrypt() 67 n2l(iv, v1); in IDEA_cfb64_encrypt() 68 ti[1] = v1; in IDEA_cfb64_encrypt() 84 v0 = v1 = ti[0] = ti[1] = t = c = cc = 0; in IDEA_cfb64_encrypt()
|
/openssl-master/crypto/perlasm/ |
A D | s390x.pm | 2648 $out.=sprintf("%#06x",($opcode&0xff00|($v1&0xf)<<4)).","; 2663 $out.=sprintf("%#06x",($opcode&0xff00|($v1&0xf)<<4)).","; 2753 $out.=sprintf("%#06x",($opcode&0xff00|($v1&0xf)<<4)).","; 2860 $out.=sprintf("%#06x",(RXB($v1)<<8|$opcode&0xff)); 2869 my ($opcode,$v1)=(shift,get_V(shift)); 2872 $out.=sprintf("%#06x",($opcode&0xff00|($v1&0xf))).","; 2874 $out.=sprintf("%#06x",(RXB(0,$v1)<<8|$opcode&0xff)); 2887 $out.=sprintf("%#06x",($opcode&0xff00|($v1&0xf))).","; 2889 $out.=sprintf("%#06x",(RXB(0,$v1,$v2)<<8|$opcode&0xff)); 2964 $out.=sprintf("%#06x",(($v1&0xf)<<12|RXB(0,0,0,$v1)<<8|$opcode&0xff)); [all …]
|
/openssl-master/crypto/aes/asm/ |
A D | aes-586.pl | 265 &shr ($v1,16); 268 &and ($v1,0xFF); 270 &mov ($v1,$v0); 275 &movz ($v0,&HB($v1)); 276 &shr ($v1,16); 279 &and ($v1,0xFF); 284 &mov ($v0,$v1); 285 &and ($v1,0xFF); 296 &mov ($v1,$v0); 300 &shr ($v1,16); [all …]
|
/openssl-master/test/certs/ |
A D | embeddedSCTs3.sct | 2 Version : v1 (0x0) 14 Version : v1 (0x0) 26 Version : v1 (0x0)
|
/openssl-master/doc/man1/ |
A D | openssl-pkcs8.pod.in | 25 [B<-v1> I<alg>] 37 format with a variety of PKCS#5 (v1.5 and v2.0) and PKCS#12 algorithms. 134 =item B<-v1> I<alg> 136 This option indicates a PKCS#5 v1.5 or PKCS#12 algorithm should be used. Some 165 the older PKCS#5 v1.5 form instead, possibly also requiring insecure weak 179 Various algorithms can be used with the B<-v1> command line option, 180 including PKCS#5 v1.5 and PKCS#12. These are described in more detail 187 These algorithms were included in the original PKCS#5 v1.5 specification. 192 These algorithms are not mentioned in the original PKCS#5 v1.5 specification 227 openssl pkcs8 -in key.pem -topk8 -v1 PBE-MD5-DES -out enckey.pem [all …]
|
A D | openssl-ciphers.pod.in | 284 Lists cipher suites which are only supported in at least TLS v1.2, TLS v1.0 or 286 Note: there are no cipher suites specific to TLS v1.1. 300 in TLS v1.2. 446 =head2 TLS v1.0 cipher suites 463 =head2 AES cipher suites from RFC3268, extending TLS v1.0 499 =head2 SEED cipher suites from RFC4162, extending TLS v1.0 522 =head2 GOST cipher suites, extending TLS v1.2 561 =head2 TLS v1.2 cipher suites 618 =head2 ARIA cipher suites from RFC6209, extending TLS v1.2 720 =head2 ChaCha20-Poly1305 cipher suites, extending TLS v1.2 [all …]
|
/openssl-master/ssl/record/ |
A D | dtls1_bitmap.c | 14 static int satsub64be(const unsigned char *v1, const unsigned char *v2) in satsub64be() argument 19 n2l8(v1, l1); in satsub64be()
|
/openssl-master/doc/man3/ |
A D | RSA_public_encrypt.pod | 38 PKCS #1 v1.5 padding. This currently is the most widely used mode. 55 B<flen> must not be more than RSA_size(B<rsa>) - 11 for the PKCS #1 v1.5 73 RSA_size(B<rsa>) - 11 for the PKCS #1 v1.5 based padding modes and 92 attack. This is an inherent weakness in the PKCS #1 v1.5 padding
|
/openssl-master/demos/bio/ |
A D | connect.cnf | 9 # Disable TLS v1.2 for test.
|