Searched refs:out_key (Results 1 – 13 of 13) sorted by relevance
/external/boringssl/src/crypto/evp/ |
D | pbkdf.c | 65 const EVP_MD *digest, size_t key_len, uint8_t *out_key) { in PKCS5_PBKDF2_HMAC() argument 74 p = out_key; in PKCS5_PBKDF2_HMAC() 132 uint8_t *out_key) { in PKCS5_PBKDF2_HMAC_SHA1() argument 134 EVP_sha1(), key_len, out_key); in PKCS5_PBKDF2_HMAC_SHA1()
|
/external/boringssl/src/include/openssl/ |
D | ec_key.h | 192 OPENSSL_EXPORT EC_KEY *d2i_ECPrivateKey(EC_KEY **out_key, const uint8_t **inp, 207 OPENSSL_EXPORT EC_KEY *d2i_ECParameters(EC_KEY **out_key, const uint8_t **inp, 220 OPENSSL_EXPORT EC_KEY *o2i_ECPublicKey(EC_KEY **out_key, const uint8_t **inp,
|
D | hkdf.h | 32 OPENSSL_EXPORT int HKDF(uint8_t *out_key, size_t out_len, const EVP_MD *digest,
|
D | pkcs8.h | 128 OPENSSL_EXPORT int PKCS12_get_key_and_certs(EVP_PKEY **out_key,
|
D | aead.h | 308 const RC4_KEY **out_key);
|
D | evp.h | 403 size_t key_len, uint8_t *out_key); 410 size_t key_len, uint8_t *out_key);
|
/external/boringssl/src/crypto/hkdf/ |
D | hkdf.c | 24 int HKDF(uint8_t *out_key, size_t out_len, in HKDF() argument 77 memcpy(out_key + done, previous, todo); in HKDF()
|
/external/boringssl/src/crypto/pkcs8/ |
D | pkcs8.c | 626 EVP_PKEY **out_key; member 789 if (*ctx->out_key) { in PKCS12_handle_content_info() 816 *ctx->out_key = EVP_PKCS82PKEY(pki); in PKCS12_handle_content_info() 819 if (ctx->out_key == NULL) { in PKCS12_handle_content_info() 866 int PKCS12_get_key_and_certs(EVP_PKEY **out_key, STACK_OF(X509) *out_certs, in PKCS12_get_key_and_certs() argument 886 *out_key = NULL; in PKCS12_get_key_and_certs() 942 ctx.out_key = out_key; in PKCS12_get_key_and_certs() 1016 EVP_PKEY_free(*out_key); in PKCS12_get_key_and_certs() 1017 *out_key = NULL; in PKCS12_get_key_and_certs()
|
/external/boringssl/src/crypto/cipher/ |
D | aead.c | 149 int EVP_AEAD_CTX_get_rc4_state(const EVP_AEAD_CTX *ctx, const RC4_KEY **out_key) { in EVP_AEAD_CTX_get_rc4_state() argument 154 return ctx->aead->get_rc4_state(ctx, out_key); in EVP_AEAD_CTX_get_rc4_state()
|
D | internal.h | 98 int (*get_rc4_state)(const EVP_AEAD_CTX *ctx, const RC4_KEY **out_key);
|
D | e_rc4.c | 378 const RC4_KEY **out_key) { in aead_rc4_md5_tls_get_rc4_state() argument 380 *out_key = &rc4_ctx->rc4; in aead_rc4_md5_tls_get_rc4_state()
|
D | e_ssl3.c | 300 static int aead_ssl3_get_rc4_state(const EVP_AEAD_CTX *ctx, const RC4_KEY **out_key) { in aead_ssl3_get_rc4_state() argument 306 *out_key = (RC4_KEY*) ssl3_ctx->cipher_ctx.cipher_data; in aead_ssl3_get_rc4_state()
|
D | e_tls.c | 437 const RC4_KEY **out_key) { in aead_rc4_sha1_tls_get_rc4_state() argument 443 *out_key = (const RC4_KEY*) tls_ctx->cipher_ctx.cipher_data; in aead_rc4_sha1_tls_get_rc4_state()
|