/openssl/crypto/siphash/ |
H A D | siphash.c | 56 v2 += v3; \ 58 v3 ^= v2; \ 65 v2 = ROTL(v2, 32); \ 130 ctx->v2 = 0x6c7967656e657261ULL ^ k0; in SipHash_Init() 147 uint64_t v2 = ctx->v2; in SipHash_Update() local 193 ctx->v2 = v2; in SipHash_Update() 204 uint64_t v2 = ctx->v2; in SipHash_Final() local 240 v2 ^= 0xee; in SipHash_Final() 242 v2 ^= 0xff; in SipHash_Final() 245 b = v0 ^ v1 ^ v2 ^ v3; in SipHash_Final() [all …]
|
/openssl/util/ |
H A D | mkinstallvars.pl | 78 my $v2 = $values{$k} || [ '.' ]; 81 (scalar @$v2 > 1 ? "[ " . join(", ", @$v2) . " ]" : $v2->[0]), 83 foreach my $v (@$v2) {
|
/openssl/dev/release-aux/ |
H A D | fixup-NEWS.md-postrelease.pl | 16 my $v2 = $PREV_RELEASE_TEXT || $2; 21 ### Major changes between OpenSSL $v2 and OpenSSL $RELEASE_TEXT [under development] 25 ### Major changes between OpenSSL $v1 and OpenSSL $v2 [$PREV_RELEASE_DATE]
|
H A D | fixup-CHANGES.md-postrelease.pl | 16 my $v2 = $PREV_RELEASE_TEXT || $2; 21 ### Changes between $v2 and $RELEASE_TEXT [xx XXX xxxx] 25 ### Changes between $v1 and $v2 [$PREV_RELEASE_DATE]
|
/openssl/test/ |
H A D | verify_extra_test.c | 111 ASN1_OCTET_STRING *v = NULL, *v2 = NULL; in test_distinguishing_id() local 130 v2 = X509_get0_distinguishing_id(x); in test_distinguishing_id() 131 if (!TEST_ptr(v2) in test_distinguishing_id() 132 || !TEST_int_eq(ASN1_OCTET_STRING_cmp(v, v2), 0)) in test_distinguishing_id() 146 ASN1_OCTET_STRING *v = NULL, *v2 = NULL; in test_req_distinguishing_id() local 169 v2 = X509_REQ_get0_distinguishing_id(x); in test_req_distinguishing_id() 170 if (!TEST_ptr(v2) in test_req_distinguishing_id() 171 || !TEST_int_eq(ASN1_OCTET_STRING_cmp(v, v2), 0)) in test_req_distinguishing_id()
|
/openssl/crypto/aes/asm/ |
H A D | bsaes-armv8.pl | 1081 eor v2.16b, v2.16b, v4.16b 1136 eor v2.16b, v2.16b, v10.16b 1161 eor v2.16b, v2.16b, v9.16b 1328 add v6.4s, v2.4s, v14.4s 1356 eor v2.16b, v2.16b, v6.16b 1399 eor v2.16b, v2.16b, v22.16b 1551 and v2.16b, v2.16b, v8.16b 1554 ext v4.16b, v2.16b, v2.16b, #8 1679 eor v2.16b, v2.16b, v13.16b 1777 eor v2.16b, v2.16b, v13.16b [all …]
|
/openssl/doc/man1/ |
H A D | openssl-pkcs8.pod.in | 23 [B<-v2> I<alg>] 38 format with a variety of PKCS#5 (v1.5 and v2.0) and PKCS#12 algorithms. 122 =item B<-v2> I<alg> 124 This option sets the PKCS#5 v2.0 algorithm. 143 If not specified PKCS#5 v2.0 form is used. 150 B<-scrypt_p> and B<-v2> options. 179 Private keys encrypted using PKCS#5 v2.0 algorithms and high iteration 226 Convert a private key to PKCS#5 v2.0 format using triple DES: 228 openssl pkcs8 -in key.pem -topk8 -v2 des3 -out enckey.pem 260 Test vectors from this PKCS#5 v2.0 implementation were posted to the [all …]
|
/openssl/crypto/perlasm/ |
H A D | s390x.pm | 2689 my ($opcode,$v1,$v2,$v3,$i4,$m5)=(shift,get_V(shift),get_V(shift), 2695 $out.=sprintf("%#06x",($m5<<12|RXB($v1,$v2,$v3)<<8|$opcode&0xff)); 2710 $out.=sprintf("%#06x",($m4<<12|RXB($v1,$v2)<<8|$opcode&0xff)); 2785 $out.=sprintf("%#06x",($m3<<12|RXB($v1,$v2)<<8|$opcode&0xff)); 2883 my ($opcode,$v1,$v2,$m3)=(shift,get_V(shift),get_V(shift), 2888 $out.=sprintf("%#06x",(($v2&0xf)<<12|$m3<<4)).","; 2889 $out.=sprintf("%#06x",(RXB(0,$v1,$v2)<<8|$opcode&0xff)); 2898 my ($opcode,$r1,$v2,$m3)=(shift,get_R(shift),get_V(shift), 2902 $out.=sprintf("%#06x",($opcode&0xff00|$r1<<4|($v2&0xf))).","; 2904 $out.=sprintf("%#06x",(RXB(0,$v2)<<8|$opcode&0xff)); [all …]
|
/openssl/test/recipes/15-test_dsaparam_data/invalid/ |
H A D | p2048_q256_bad_q.pem | 8 H57M3PwkTsq+v2/dAoIBADKkGYUe9qsp4mqxkBKaEdpcjmjfLrvtE+3ikipPPGHh
|
/openssl/include/crypto/ |
H A D | siphash.h | 37 uint64_t v2; member
|
/openssl/doc/man3/ |
H A D | RSA_padding_add_PKCS1_type_1.pod | 81 PKCS #1 v2.0 EMSA-PKCS1-v1_5 (PKCS #1 v1.5 block type 1); used for signatures 85 PKCS #1 v2.0 EME-PKCS1-v1_5 (PKCS #1 v1.5 block type 2) 89 PKCS #1 v2.0 EME-OAEP
|
H A D | RSA_public_encrypt.pod | 44 EME-OAEP as defined in PKCS #1 v2.0 with SHA-1, MGF1 and an empty 111 SSL, PKCS #1 v2.0
|
H A D | d2i_PKCS8PrivateKey_bio.pod | 35 PKCS#5 v1.5 and PKCS#5 v2.0 password based encryption algorithms.
|
H A D | RSA_sign.pod | 56 SSL, PKCS #1 v2.0
|
H A D | EVP_BytesToKey.pod | 40 defined in PKCS#5v2.1 and provided by PKCS5_PBKDF2_HMAC.
|
H A D | PEM_read.pod | 110 v2.0 PBE.
|
H A D | SSL_CTX_set_mode.pod | 93 This flag has no effect on SSL v2 connections, or on DTLS connections.
|
H A D | OSSL_trace_set_channel.pod | 168 Traces PKCS#5 v2 key generation.
|
/openssl/ssl/ |
H A D | ssl_local.h | 55 # define DTLS_VERSION_GT(v1, v2) (dtls_ver_ordinal(v1) < dtls_ver_ordinal(v2)) argument 56 # define DTLS_VERSION_GE(v1, v2) (dtls_ver_ordinal(v1) <= dtls_ver_ordinal(v2)) argument 57 # define DTLS_VERSION_LT(v1, v2) (dtls_ver_ordinal(v1) > dtls_ver_ordinal(v2)) argument 58 # define DTLS_VERSION_LE(v1, v2) (dtls_ver_ordinal(v1) >= dtls_ver_ordinal(v2)) argument
|
/openssl/.github/workflows/ |
H A D | coveralls.yml | 89 uses: coverallsapp/github-action@v2.3.2
|
/openssl/ssl/record/methods/ |
H A D | dtls_meth.c | 16 static int satsub64be(const unsigned char *v1, const unsigned char *v2) in satsub64be() argument 22 n2l8(v2, l2); in satsub64be()
|
/openssl/doc/man7/ |
H A D | ossl-guide-introduction.pod | 20 Apache v2 license.
|
H A D | openssl-env.pod | 102 Traces PKCS#5 v2 key generation.
|
/openssl/providers/implementations/kdfs/ |
H A D | argon2.c | 97 # define PERMUTATION_P(v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, \ argument 102 G(v2, v6, v10, v14); \ 106 G(v2, v7, v8, v13); \
|
/openssl/test/recipes/30-test_evp_data/ |
H A D | evppkey_rsa.txt | 283 # ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-1/pkcs-1v2-1-vec.zip
|