Searched refs:EVP_Cipher (Results 1 – 7 of 7) sorted by relevance
/external/boringssl/src/crypto/cmac/ |
D | cmac.c | 152 !EVP_Cipher(&ctx->cipher_ctx, scratch, kZeroIV, AES_BLOCK_SIZE) || in CMAC_Init() 195 if (!EVP_Cipher(&ctx->cipher_ctx, scratch, ctx->block, AES_BLOCK_SIZE)) { in CMAC_Update() 202 if (!EVP_Cipher(&ctx->cipher_ctx, scratch, in, AES_BLOCK_SIZE)) { in CMAC_Update() 238 return EVP_Cipher(&ctx->cipher_ctx, out, out, AES_BLOCK_SIZE); in CMAC_Final()
|
/external/openssh/ |
D | cipher-3des1.c | 96 if (EVP_Cipher(&c->k1, dest, (u_char *)src, len) == 0 || in ssh1_3des_cbc() 97 EVP_Cipher(&c->k2, dest, dest, len) == 0 || in ssh1_3des_cbc() 98 EVP_Cipher(&c->k3, dest, dest, len) == 0) in ssh1_3des_cbc()
|
D | cipher.c | 365 ret = EVP_Cipher(&cc->evp, discard, junk, cipher->discard_len); in cipher_init() 429 EVP_Cipher(&cc->evp, NULL, (u_char *)src, aadlen) < 0) in cipher_crypt() 435 if (EVP_Cipher(&cc->evp, dest + aadlen, (u_char *)src + aadlen, in cipher_crypt() 440 if (EVP_Cipher(&cc->evp, NULL, NULL, 0) < 0) in cipher_crypt()
|
/external/tcpdump/ |
D | print-esp.c | 137 EVP_Cipher(&ctx, buf, buf, len); in esp_print_decrypt_buffer_by_ikev2() 674 EVP_Cipher(&ctx, p + ivlen, p + ivlen, ep - (p + ivlen)); in esp_print()
|
/external/boringssl/src/include/openssl/ |
D | cipher.h | 218 OPENSSL_EXPORT int EVP_Cipher(EVP_CIPHER_CTX *ctx, uint8_t *out,
|
/external/boringssl/src/crypto/cipher/ |
D | cipher.c | 480 int EVP_Cipher(EVP_CIPHER_CTX *ctx, uint8_t *out, const uint8_t *in, in EVP_Cipher() function
|
/external/ipsec-tools/src/racoon/ |
D | crypto_openssl.c | 1314 if (!EVP_Cipher(&ctx, (u_char *) res->v, (u_char *) data->v, data->l)) { in evp_crypt()
|