/external/openssh/ |
D | cipher-3des1.c | 116 EVP_Cipher(&c->k1, dest, (u_char *)src, len); in ssh1_3des_cbc() 117 EVP_Cipher(&c->k2, dest, dest, len); in ssh1_3des_cbc() 118 EVP_Cipher(&c->k3, dest, dest, len); in ssh1_3des_cbc() 120 if (EVP_Cipher(&c->k1, dest, (u_char *)src, len) == 0 || in ssh1_3des_cbc() 121 EVP_Cipher(&c->k2, dest, dest, len) == 0 || in ssh1_3des_cbc() 122 EVP_Cipher(&c->k3, dest, dest, len) == 0) in ssh1_3des_cbc()
|
D | cipher.c | 269 if (EVP_Cipher(&cc->evp, discard, junk, in cipher_init() 283 if (EVP_Cipher(&cc->evp, dest, (u_char *)src, len) == 0) in cipher_crypt()
|
/external/openssh/openbsd-compat/ |
D | openssl-compat.h | 96 # ifdef EVP_Cipher 97 # undef EVP_Cipher 100 # define EVP_Cipher(a,b,c,d) ssh_EVP_Cipher((a),(b),(c),(d)) macro
|
D | openssl-compat.c | 50 EVP_Cipher(evp, dst, src, len); in ssh_EVP_Cipher()
|
/external/chromium_org/third_party/openssl/openssl/crypto/cmac/ |
D | cmac.c | 200 if (!EVP_Cipher(&ctx->cctx, ctx->tbl, zero_iv, bl)) in CMAC_Init() 243 if (!EVP_Cipher(&ctx->cctx, ctx->tbl, ctx->last_block,bl)) in CMAC_Update() 249 if (!EVP_Cipher(&ctx->cctx, ctx->tbl, data, bl)) in CMAC_Update() 289 if (!EVP_Cipher(&ctx->cctx, out, out, bl)) in CMAC_Final()
|
/external/openssl/crypto/cmac/ |
D | cmac.c | 200 if (!EVP_Cipher(&ctx->cctx, ctx->tbl, zero_iv, bl)) in CMAC_Init() 243 if (!EVP_Cipher(&ctx->cctx, ctx->tbl, ctx->last_block,bl)) in CMAC_Update() 249 if (!EVP_Cipher(&ctx->cctx, ctx->tbl, data, bl)) in CMAC_Update() 289 if (!EVP_Cipher(&ctx->cctx, out, out, bl)) in CMAC_Final()
|
/external/openssl/ssl/ |
D | d1_enc.c | 244 EVP_Cipher(ds,rec->data,rec->input,l); in dtls1_enc()
|
D | s2_enc.c | 148 EVP_Cipher(ds,s->s2->mac_data,s->s2->mac_data,l); in ssl2_enc()
|
D | s3_enc.c | 538 EVP_Cipher(ds,rec->data,rec->input,l); in ssl3_enc()
|
D | t1_enc.c | 831 i = EVP_Cipher(ds,rec->data,rec->input,l); in tls1_enc()
|
D | kssl.c | 2086 if (!EVP_Cipher(&ciph_ctx,unenc_authent,dec_authent->cipher->data,outl)) in kssl_check_authent()
|
/external/chromium_org/third_party/openssl/openssl/ssl/ |
D | d1_enc.c | 244 EVP_Cipher(ds,rec->data,rec->input,l); in dtls1_enc()
|
D | s2_enc.c | 148 EVP_Cipher(ds,s->s2->mac_data,s->s2->mac_data,l); in ssl2_enc()
|
D | s3_enc.c | 544 EVP_Cipher(ds,rec->data,rec->input,l); in ssl3_enc()
|
D | t1_enc.c | 1088 i = EVP_Cipher(ds,rec->data,rec->input,l); in tls1_enc()
|
D | kssl.c | 2086 if (!EVP_Cipher(&ciph_ctx,unenc_authent,dec_authent->cipher->data,outl)) in kssl_check_authent()
|
/external/openssl/crypto/evp/ |
D | evp_lib.c | 191 int EVP_Cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, unsigned int inl) in EVP_Cipher() function
|
D | evp.h | 534 int EVP_Cipher(EVP_CIPHER_CTX *c,
|
/external/chromium_org/third_party/openssl/openssl/crypto/evp/ |
D | evp_lib.c | 191 int EVP_Cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, unsigned int inl) in EVP_Cipher() function
|
D | evp.h | 534 int EVP_Cipher(EVP_CIPHER_CTX *c,
|
/external/tcpdump/ |
D | print-esp.c | 483 EVP_Cipher(&ctx, p + ivlen, p + ivlen, ep - (p + ivlen)); in esp_print()
|
/external/openssl/include/openssl/ |
D | evp.h | 534 int EVP_Cipher(EVP_CIPHER_CTX *c,
|
/external/chromium_org/third_party/openssl/openssl/include/openssl/ |
D | evp.h | 534 int EVP_Cipher(EVP_CIPHER_CTX *c,
|
/external/ipsec-tools/src/racoon/ |
D | crypto_openssl.c | 1296 if (!EVP_Cipher(&ctx, (u_char *) res->v, (u_char *) data->v, data->l)) { in evp_crypt()
|