HomeSort by: relevance | last modified time | path
    Searched defs:privkey (Results 1 - 25 of 84) sorted by relevancy

1 2 3 4

  /src/crypto/external/apache2/openssl/dist/test/
fatalerrtest.c 17 static char *privkey = NULL; variable
33 &sctx, &cctx, cert, privkey)))
95 || !TEST_ptr(privkey = test_get_argument(1)))
ssl_handshake_rtt_test.c 37 static char *privkey = NULL; variable
69 &sctx, &cctx, cert, privkey))
quic_newcid_test.c 17 static char *privkey = NULL; variable
70 if (!TEST_true(qtest_create_quic_objects(NULL, cctx, NULL, cert, privkey, 0,
167 privkey = test_mk_file_path(certsdir, "serverkey.pem");
168 if (privkey == NULL)
177 OPENSSL_free(privkey);
184 OPENSSL_free(privkey);
decoder_propq_test.c 51 EVP_PKEY *privkey = NULL; local
67 if (!TEST_ptr_null(PEM_read_bio_PrivateKey_ex(bio, &privkey, &passcb, NULL, libctx, NULL)))
74 if (!TEST_ptr_null(PEM_read_bio_PrivateKey_ex(bio, &privkey, &passcb, NULL, libctx, "?fips=true")))
80 EVP_PKEY_free(privkey);
cert_comp_test.c 39 static char *privkey = NULL; variable
58 || !TEST_ptr(priv_in = BIO_new_file(privkey, "r"))
165 &sctx, &cctx, cert, privkey)))
266 privkey = test_mk_file_path(certsdir, "serverkey.pem");
267 if (privkey == NULL)
275 OPENSSL_free(privkey);
286 OPENSSL_free(privkey);
quicfaultstest.c 17 static char *privkey = NULL; variable
37 if (!TEST_true(qtest_create_quic_objects(NULL, cctx, NULL, cert, privkey, 0,
107 if (!TEST_true(qtest_create_quic_objects(NULL, cctx, NULL, cert, privkey, 0,
189 if (!TEST_true(qtest_create_quic_objects(NULL, cctx, NULL, cert, privkey, 0,
276 if (!TEST_true(qtest_create_quic_objects(NULL, cctx, NULL, cert, privkey,
390 privkey = test_mk_file_path(certsdir, "serverkey.pem");
391 if (privkey == NULL)
403 OPENSSL_free(privkey);
410 OPENSSL_free(privkey);
recordlentest.c 16 static char *privkey = NULL; variable
107 &sctx, &cctx, cert, privkey)))
194 || !TEST_ptr(privkey = test_get_argument(1)))
servername_test.c 32 static char *privkey = NULL; variable
209 &sctx, &cctx, cert, privkey))
261 || !TEST_ptr(privkey = test_get_argument(1)))
sslcorrupttest.c 179 static char *privkey = NULL; variable
199 &sctx, &cctx, cert, privkey)))
266 || !TEST_ptr(privkey = test_get_argument(1)))
  /src/crypto/external/bsd/openssl/dist/test/
fatalerrtest.c 17 static char *privkey = NULL; variable
33 &sctx, &cctx, cert, privkey)))
95 || !TEST_ptr(privkey = test_get_argument(1)))
  /src/crypto/external/bsd/openssl.old/dist/test/
cmsapitest.c 11 static EVP_PKEY *privkey = NULL; variable
33 if (!TEST_true(CMS_decrypt(content, privkey, cert, NULL, outmsgbio,
76 if (!TEST_true(PEM_read_bio_PrivateKey(privkeybio, &privkey, NULL, NULL))) {
92 EVP_PKEY_free(privkey);
fatalerrtest.c 17 static char *privkey = NULL; variable
33 &sctx, &cctx, cert, privkey)))
88 || !TEST_ptr(privkey = test_get_argument(1)))
  /src/crypto/external/apache2/openssl/dist/crypto/ec/
ecx_backend.c 32 ossl_x25519_public_from_private(key->pubkey, key->privkey);
36 key->privkey, key->propq)) {
42 ossl_x448_public_from_private(key->pubkey, key->privkey);
46 key->privkey, key->propq)) {
74 (void **)&ecx->privkey, ecx->keylen,
83 OPENSSL_secure_clear_free(ecx->privkey, privkeylen);
84 ecx->privkey = NULL;
135 && key->privkey != NULL) {
140 memcpy(ret->privkey, key->privkey, ret->keylen)
158 unsigned char *privkey, *pubkey; local
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/ec/
ecx_backend.c 32 ossl_x25519_public_from_private(key->pubkey, key->privkey);
36 key->privkey, key->propq)) {
42 ossl_x448_public_from_private(key->pubkey, key->privkey);
46 key->privkey, key->propq)) {
75 (void **)&ecx->privkey, ecx->keylen,
84 OPENSSL_secure_clear_free(ecx->privkey, privkeylen);
85 ecx->privkey = NULL;
143 && key->privkey != NULL) {
146 memcpy(ret->privkey, key->privkey, ret->keylen)
164 unsigned char *privkey, *pubkey; local
    [all...]
ecp_s390x_nistp.c 137 const BIGNUM *privkey; local
141 privkey = EC_KEY_get0_private_key(eckey);
142 if (group == NULL || privkey == NULL) {
170 if (BN_bn2binpad(privkey, param + S390X_OFF_K(len), len) == -1) {
  /src/crypto/external/apache2/openssl/dist/crypto/dsa/
dsa_backend.c 130 ASN1_INTEGER *privkey = NULL; local
141 if ((privkey = d2i_ASN1_INTEGER(NULL, &p, pklen)) == NULL)
143 if (privkey->type == V_ASN1_NEG_INTEGER || ptype != V_ASN1_SEQUENCE)
153 || !ASN1_INTEGER_to_BN(privkey, dsa_privkey)) {
190 ASN1_STRING_clear_free(privkey);
  /src/crypto/external/bsd/openssl/dist/crypto/dsa/
dsa_backend.c 132 ASN1_INTEGER *privkey = NULL; local
143 if ((privkey = d2i_ASN1_INTEGER(NULL, &p, pklen)) == NULL)
145 if (privkey->type == V_ASN1_NEG_INTEGER || ptype != V_ASN1_SEQUENCE)
155 || !ASN1_INTEGER_to_BN(privkey, dsa_privkey)) {
192 ASN1_STRING_clear_free(privkey);
  /src/crypto/external/bsd/openssl/dist/fuzz/
server.c 521 RSA *privkey; local
552 privkey = d2i_RSAPrivateKey(NULL, &bufp, sizeof(kRSAPrivateKeyDER));
553 OPENSSL_assert(privkey != NULL);
555 EVP_PKEY_assign_RSA(pkey, privkey);
  /src/crypto/external/bsd/openssl.old/dist/fuzz/
server.c 515 RSA *privkey; local
544 privkey = d2i_RSAPrivateKey(NULL, &bufp, sizeof(kRSAPrivateKeyDER));
545 OPENSSL_assert(privkey != NULL);
547 EVP_PKEY_assign_RSA(pkey, privkey);
  /src/crypto/external/apache2/openssl/dist/fuzz/
dtlsserver.c 791 RSA *privkey; local
821 privkey = PEM_read_bio_RSAPrivateKey(bio_buf, NULL, NULL, NULL);
823 OPENSSL_assert(privkey != NULL);
826 EVP_PKEY_assign_RSA(pkey, privkey);
server.c 608 RSA *privkey; local
639 privkey = d2i_RSAPrivateKey(NULL, &bufp, sizeof(kRSAPrivateKeyDER));
640 OPENSSL_assert(privkey != NULL);
642 EVP_PKEY_assign_RSA(pkey, privkey);
  /src/crypto/external/apache2/openssl/dist/crypto/dh/
dh_backend.c 190 ASN1_INTEGER *privkey = NULL; local
200 if ((privkey = d2i_ASN1_INTEGER(NULL, &p, pklen)) == NULL)
221 || !ASN1_INTEGER_to_BN(privkey, privkey_bn)) {
240 ASN1_STRING_clear_free(privkey);
  /src/crypto/external/apache2/openssl/dist/include/crypto/
ecx.h 70 unsigned char *privkey; member in struct:ecx_key_st
  /src/crypto/external/bsd/openssl/dist/crypto/dh/
dh_backend.c 197 ASN1_INTEGER *privkey = NULL; local
207 if ((privkey = d2i_ASN1_INTEGER(NULL, &p, pklen)) == NULL)
228 || !ASN1_INTEGER_to_BN(privkey, privkey_bn)) {
247 ASN1_STRING_clear_free(privkey);
  /src/crypto/external/bsd/openssl/dist/include/crypto/
ecx.h 71 unsigned char *privkey; member in struct:ecx_key_st

Completed in 22 milliseconds

1 2 3 4