Home
last modified time | relevance | path

Searched refs:algor (Results 1 - 25 of 133) sorted by relevance

123456

/third_party/node/deps/openssl/openssl/crypto/pkcs12/
H A Dp12_decr.c16 * Encrypt/Decrypt a buffer based on password and algor, result in a
19 unsigned char *PKCS12_pbe_crypt_ex(const X509_ALGOR *algor, in PKCS12_pbe_crypt_ex() argument
36 if (!EVP_PBE_CipherInit_ex(algor->algorithm, pass, passlen, in PKCS12_pbe_crypt_ex()
37 algor->parameter, ctx, en_de, libctx, propq)) in PKCS12_pbe_crypt_ex()
115 unsigned char *PKCS12_pbe_crypt(const X509_ALGOR *algor, in PKCS12_pbe_crypt() argument
120 return PKCS12_pbe_crypt_ex(algor, pass, passlen, in, inlen, data, datalen, in PKCS12_pbe_crypt()
129 void *PKCS12_item_decrypt_d2i_ex(const X509_ALGOR *algor, const ASN1_ITEM *it, in PKCS12_item_decrypt_d2i_ex() argument
140 if (!PKCS12_pbe_crypt_ex(algor, pass, passlen, oct->data, oct->length, in PKCS12_item_decrypt_d2i_ex()
158 void *PKCS12_item_decrypt_d2i(const X509_ALGOR *algor, const ASN1_ITEM *it, in PKCS12_item_decrypt_d2i() argument
162 return PKCS12_item_decrypt_d2i_ex(algor, i in PKCS12_item_decrypt_d2i()
171 PKCS12_item_i2d_encrypt_ex(X509_ALGOR *algor, const ASN1_ITEM *it, const char *pass, int passlen, void *obj, int zbuf, OSSL_LIB_CTX *ctx, const char *propq) PKCS12_item_i2d_encrypt_ex() argument
206 PKCS12_item_i2d_encrypt(X509_ALGOR *algor, const ASN1_ITEM *it, const char *pass, int passlen, void *obj, int zbuf) PKCS12_item_i2d_encrypt() argument
[all...]
/third_party/openssl/crypto/pkcs12/
H A Dp12_decr.c16 * Encrypt/Decrypt a buffer based on password and algor, result in a
19 unsigned char *PKCS12_pbe_crypt_ex(const X509_ALGOR *algor, in PKCS12_pbe_crypt_ex() argument
36 if (!EVP_PBE_CipherInit_ex(algor->algorithm, pass, passlen, in PKCS12_pbe_crypt_ex()
37 algor->parameter, ctx, en_de, libctx, propq)) in PKCS12_pbe_crypt_ex()
115 unsigned char *PKCS12_pbe_crypt(const X509_ALGOR *algor, in PKCS12_pbe_crypt() argument
120 return PKCS12_pbe_crypt_ex(algor, pass, passlen, in, inlen, data, datalen, in PKCS12_pbe_crypt()
129 void *PKCS12_item_decrypt_d2i_ex(const X509_ALGOR *algor, const ASN1_ITEM *it, in PKCS12_item_decrypt_d2i_ex() argument
140 if (!PKCS12_pbe_crypt_ex(algor, pass, passlen, oct->data, oct->length, in PKCS12_item_decrypt_d2i_ex()
158 void *PKCS12_item_decrypt_d2i(const X509_ALGOR *algor, const ASN1_ITEM *it, in PKCS12_item_decrypt_d2i() argument
162 return PKCS12_item_decrypt_d2i_ex(algor, i in PKCS12_item_decrypt_d2i()
171 PKCS12_item_i2d_encrypt_ex(X509_ALGOR *algor, const ASN1_ITEM *it, const char *pass, int passlen, void *obj, int zbuf, OSSL_LIB_CTX *ctx, const char *propq) PKCS12_item_i2d_encrypt_ex() argument
206 PKCS12_item_i2d_encrypt(X509_ALGOR *algor, const ASN1_ITEM *it, const char *pass, int passlen, void *obj, int zbuf) PKCS12_item_i2d_encrypt() argument
[all...]
/third_party/openssl/test/
H A Devp_fetch_prov_test.c126 X509_ALGOR *algor; in make_algor() local
128 if (!TEST_ptr(algor = X509_ALGOR_new()) in make_algor()
129 || !TEST_true(X509_ALGOR_set0(algor, OBJ_nid2obj(nid), in make_algor()
131 X509_ALGOR_free(algor); in make_algor()
134 return algor; in make_algor()
213 X509_ALGOR *algor = make_algor(NID_sha256); in test_explicit_EVP_MD_fetch_by_X509_ALGOR() local
217 if (algor == NULL) in test_explicit_EVP_MD_fetch_by_X509_ALGOR()
220 X509_ALGOR_get0(&obj, NULL, NULL, algor); in test_explicit_EVP_MD_fetch_by_X509_ALGOR()
234 X509_ALGOR_free(algor); in test_explicit_EVP_MD_fetch_by_X509_ALGOR()
329 X509_ALGOR *algor in test_explicit_EVP_CIPHER_fetch_by_X509_ALGOR() local
[all...]
H A Dpbetest.c62 X509_ALGOR *algor = NULL; in test_pkcs5_pbe() local
70 algor = X509_ALGOR_new(); in test_pkcs5_pbe()
71 if (!TEST_ptr(algor)) in test_pkcs5_pbe()
74 if (!TEST_true(PKCS5_pbe_set0_algor(algor, EVP_CIPHER_nid(cipher), pbe_iter, in test_pkcs5_pbe()
77 algor->parameter, cipher, md, 1)) in test_pkcs5_pbe()
93 algor->parameter, cipher, md, 0)) in test_pkcs5_pbe()
107 X509_ALGOR_free(algor); in test_pkcs5_pbe()
/third_party/node/deps/openssl/openssl/providers/implementations/encode_decode/
H A Ddecode_spki2typespki.c61 X509_ALGOR *algor = NULL; in spki2typespki_decode() local
79 if (!X509_PUBKEY_get0_param(NULL, NULL, NULL, &algor, xpub)) in spki2typespki_decode()
81 X509_ALGOR_get0(&oid, NULL, NULL, algor); in spki2typespki_decode()
86 && ossl_x509_algor_is_sm2(algor)) in spki2typespki_decode()
/third_party/openssl/providers/implementations/encode_decode/
H A Ddecode_spki2typespki.c61 X509_ALGOR *algor = NULL; in spki2typespki_decode() local
79 if (!X509_PUBKEY_get0_param(NULL, NULL, NULL, &algor, xpub)) in spki2typespki_decode()
81 X509_ALGOR_get0(&oid, NULL, NULL, algor); in spki2typespki_decode()
86 && ossl_x509_algor_is_sm2(algor)) in spki2typespki_decode()
/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dx_pubkey.c32 X509_ALGOR *algor; member
64 ASN1_SIMPLE(X509_PUBKEY, algor, X509_ALGOR),
90 X509_ALGOR_free(pubkey->algor);
103 return (pubkey->algor != NULL
104 || (pubkey->algor = X509_ALGOR_new()) != NULL)
203 pubkey->algor->algorithm, 0) <= 0) {
289 || (pubkey->algor = X509_ALGOR_dup(a->algor)) == NULL in X509_PUBKEY_dup()
403 nid = OBJ_obj2nid(key->algor->algorithm); in x509_pubkey_decode()
1008 if (!X509_ALGOR_set0(pub->algor, aob in X509_PUBKEY_set0_param()
[all...]
/third_party/openssl/crypto/x509/
H A Dx_pubkey.c32 X509_ALGOR *algor; member
64 ASN1_SIMPLE(X509_PUBKEY, algor, X509_ALGOR),
90 X509_ALGOR_free(pubkey->algor);
103 return (pubkey->algor != NULL
104 || (pubkey->algor = X509_ALGOR_new()) != NULL)
203 pubkey->algor->algorithm, 0) <= 0) {
289 || (pubkey->algor = X509_ALGOR_dup(a->algor)) == NULL in X509_PUBKEY_dup()
403 nid = OBJ_obj2nid(key->algor->algorithm); in x509_pubkey_decode()
1008 if (!X509_ALGOR_set0(pub->algor, aob in X509_PUBKEY_set0_param()
[all...]
/third_party/node/deps/openssl/openssl/crypto/asn1/
H A Dn_pkey.c27 X509_ALGOR *algor; member
52 ASN1_SIMPLE(NETSCAPE_PKEY, algor, X509_ALGOR),
/third_party/openssl/crypto/asn1/
H A Dn_pkey.c27 X509_ALGOR *algor; member
52 ASN1_SIMPLE(NETSCAPE_PKEY, algor, X509_ALGOR),
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/include/openssl/
H A Dpkcs12.h221 unsigned char *PKCS12_pbe_crypt(const X509_ALGOR *algor,
226 unsigned char *PKCS12_pbe_crypt_ex(const X509_ALGOR *algor,
232 void *PKCS12_item_decrypt_d2i(const X509_ALGOR *algor, const ASN1_ITEM *it,
235 void *PKCS12_item_decrypt_d2i_ex(const X509_ALGOR *algor, const ASN1_ITEM *it,
240 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt(X509_ALGOR *algor,
244 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt_ex(X509_ALGOR *algor,
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm/include/openssl/
H A Dpkcs12.h221 unsigned char *PKCS12_pbe_crypt(const X509_ALGOR *algor,
226 unsigned char *PKCS12_pbe_crypt_ex(const X509_ALGOR *algor,
232 void *PKCS12_item_decrypt_d2i(const X509_ALGOR *algor, const ASN1_ITEM *it,
235 void *PKCS12_item_decrypt_d2i_ex(const X509_ALGOR *algor, const ASN1_ITEM *it,
240 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt(X509_ALGOR *algor,
244 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt_ex(X509_ALGOR *algor,
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/
H A Dpkcs12.h221 unsigned char *PKCS12_pbe_crypt(const X509_ALGOR *algor,
226 unsigned char *PKCS12_pbe_crypt_ex(const X509_ALGOR *algor,
232 void *PKCS12_item_decrypt_d2i(const X509_ALGOR *algor, const ASN1_ITEM *it,
235 void *PKCS12_item_decrypt_d2i_ex(const X509_ALGOR *algor, const ASN1_ITEM *it,
240 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt(X509_ALGOR *algor,
244 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt_ex(X509_ALGOR *algor,
/third_party/node/deps/openssl/config/archs/linux-elf/asm/include/openssl/
H A Dpkcs12.h221 unsigned char *PKCS12_pbe_crypt(const X509_ALGOR *algor,
226 unsigned char *PKCS12_pbe_crypt_ex(const X509_ALGOR *algor,
232 void *PKCS12_item_decrypt_d2i(const X509_ALGOR *algor, const ASN1_ITEM *it,
235 void *PKCS12_item_decrypt_d2i_ex(const X509_ALGOR *algor, const ASN1_ITEM *it,
240 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt(X509_ALGOR *algor,
244 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt_ex(X509_ALGOR *algor,
/third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/include/openssl/
H A Dpkcs12.h221 unsigned char *PKCS12_pbe_crypt(const X509_ALGOR *algor,
226 unsigned char *PKCS12_pbe_crypt_ex(const X509_ALGOR *algor,
232 void *PKCS12_item_decrypt_d2i(const X509_ALGOR *algor, const ASN1_ITEM *it,
235 void *PKCS12_item_decrypt_d2i_ex(const X509_ALGOR *algor, const ASN1_ITEM *it,
240 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt(X509_ALGOR *algor,
244 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt_ex(X509_ALGOR *algor,
/third_party/node/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/
H A Dpkcs12.h221 unsigned char *PKCS12_pbe_crypt(const X509_ALGOR *algor,
226 unsigned char *PKCS12_pbe_crypt_ex(const X509_ALGOR *algor,
232 void *PKCS12_item_decrypt_d2i(const X509_ALGOR *algor, const ASN1_ITEM *it,
235 void *PKCS12_item_decrypt_d2i_ex(const X509_ALGOR *algor, const ASN1_ITEM *it,
240 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt(X509_ALGOR *algor,
244 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt_ex(X509_ALGOR *algor,
/third_party/node/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/
H A Dpkcs12.h221 unsigned char *PKCS12_pbe_crypt(const X509_ALGOR *algor,
226 unsigned char *PKCS12_pbe_crypt_ex(const X509_ALGOR *algor,
232 void *PKCS12_item_decrypt_d2i(const X509_ALGOR *algor, const ASN1_ITEM *it,
235 void *PKCS12_item_decrypt_d2i_ex(const X509_ALGOR *algor, const ASN1_ITEM *it,
240 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt(X509_ALGOR *algor,
244 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt_ex(X509_ALGOR *algor,
/third_party/node/deps/openssl/config/archs/BSD-x86/asm_avx2/include/openssl/
H A Dpkcs12.h221 unsigned char *PKCS12_pbe_crypt(const X509_ALGOR *algor,
226 unsigned char *PKCS12_pbe_crypt_ex(const X509_ALGOR *algor,
232 void *PKCS12_item_decrypt_d2i(const X509_ALGOR *algor, const ASN1_ITEM *it,
235 void *PKCS12_item_decrypt_d2i_ex(const X509_ALGOR *algor, const ASN1_ITEM *it,
240 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt(X509_ALGOR *algor,
244 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt_ex(X509_ALGOR *algor,
/third_party/node/deps/openssl/config/archs/BSD-x86/no-asm/include/openssl/
H A Dpkcs12.h221 unsigned char *PKCS12_pbe_crypt(const X509_ALGOR *algor,
226 unsigned char *PKCS12_pbe_crypt_ex(const X509_ALGOR *algor,
232 void *PKCS12_item_decrypt_d2i(const X509_ALGOR *algor, const ASN1_ITEM *it,
235 void *PKCS12_item_decrypt_d2i_ex(const X509_ALGOR *algor, const ASN1_ITEM *it,
240 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt(X509_ALGOR *algor,
244 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt_ex(X509_ALGOR *algor,
/third_party/node/deps/openssl/config/archs/BSD-x86_64/asm/include/openssl/
H A Dpkcs12.h221 unsigned char *PKCS12_pbe_crypt(const X509_ALGOR *algor,
226 unsigned char *PKCS12_pbe_crypt_ex(const X509_ALGOR *algor,
232 void *PKCS12_item_decrypt_d2i(const X509_ALGOR *algor, const ASN1_ITEM *it,
235 void *PKCS12_item_decrypt_d2i_ex(const X509_ALGOR *algor, const ASN1_ITEM *it,
240 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt(X509_ALGOR *algor,
244 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt_ex(X509_ALGOR *algor,
/third_party/node/deps/openssl/config/archs/BSD-x86_64/asm_avx2/include/openssl/
H A Dpkcs12.h221 unsigned char *PKCS12_pbe_crypt(const X509_ALGOR *algor,
226 unsigned char *PKCS12_pbe_crypt_ex(const X509_ALGOR *algor,
232 void *PKCS12_item_decrypt_d2i(const X509_ALGOR *algor, const ASN1_ITEM *it,
235 void *PKCS12_item_decrypt_d2i_ex(const X509_ALGOR *algor, const ASN1_ITEM *it,
240 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt(X509_ALGOR *algor,
244 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt_ex(X509_ALGOR *algor,
/third_party/node/deps/openssl/config/archs/BSD-x86/asm/include/openssl/
H A Dpkcs12.h221 unsigned char *PKCS12_pbe_crypt(const X509_ALGOR *algor,
226 unsigned char *PKCS12_pbe_crypt_ex(const X509_ALGOR *algor,
232 void *PKCS12_item_decrypt_d2i(const X509_ALGOR *algor, const ASN1_ITEM *it,
235 void *PKCS12_item_decrypt_d2i_ex(const X509_ALGOR *algor, const ASN1_ITEM *it,
240 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt(X509_ALGOR *algor,
244 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt_ex(X509_ALGOR *algor,
/third_party/node/deps/openssl/config/archs/aix64-gcc-as/asm/include/openssl/
H A Dpkcs12.h221 unsigned char *PKCS12_pbe_crypt(const X509_ALGOR *algor,
226 unsigned char *PKCS12_pbe_crypt_ex(const X509_ALGOR *algor,
232 void *PKCS12_item_decrypt_d2i(const X509_ALGOR *algor, const ASN1_ITEM *it,
235 void *PKCS12_item_decrypt_d2i_ex(const X509_ALGOR *algor, const ASN1_ITEM *it,
240 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt(X509_ALGOR *algor,
244 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt_ex(X509_ALGOR *algor,
/third_party/node/deps/openssl/config/archs/aix64-gcc-as/asm_avx2/include/openssl/
H A Dpkcs12.h221 unsigned char *PKCS12_pbe_crypt(const X509_ALGOR *algor,
226 unsigned char *PKCS12_pbe_crypt_ex(const X509_ALGOR *algor,
232 void *PKCS12_item_decrypt_d2i(const X509_ALGOR *algor, const ASN1_ITEM *it,
235 void *PKCS12_item_decrypt_d2i_ex(const X509_ALGOR *algor, const ASN1_ITEM *it,
240 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt(X509_ALGOR *algor,
244 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt_ex(X509_ALGOR *algor,
/third_party/node/deps/openssl/config/archs/aix64-gcc-as/no-asm/include/openssl/
H A Dpkcs12.h221 unsigned char *PKCS12_pbe_crypt(const X509_ALGOR *algor,
226 unsigned char *PKCS12_pbe_crypt_ex(const X509_ALGOR *algor,
232 void *PKCS12_item_decrypt_d2i(const X509_ALGOR *algor, const ASN1_ITEM *it,
235 void *PKCS12_item_decrypt_d2i_ex(const X509_ALGOR *algor, const ASN1_ITEM *it,
240 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt(X509_ALGOR *algor,
244 ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt_ex(X509_ALGOR *algor,

Completed in 17 milliseconds

123456