Searched refs:EVP_CipherInit (Results 1 - 8 of 8) sorted by relevance

/freebsd-9.3-release/crypto/openssh/
H A Dcipher-3des1.c89 EVP_CipherInit(&c->k1, EVP_des_cbc(), k1, NULL, enc);
90 EVP_CipherInit(&c->k2, EVP_des_cbc(), k2, NULL, !enc);
91 EVP_CipherInit(&c->k3, EVP_des_cbc(), k3, NULL, enc);
93 if (EVP_CipherInit(&c->k1, EVP_des_cbc(), k1, NULL, enc) == 0 ||
94 EVP_CipherInit(&c->k2, EVP_des_cbc(), k2, NULL, !enc) == 0 ||
95 EVP_CipherInit(&c->k3, EVP_des_cbc(), k3, NULL, enc) == 0) {
H A Dcipher.c315 EVP_CipherInit(&cc->evp, type, (u_char *)key, (u_char *)iv,
318 if (EVP_CipherInit(&cc->evp, type, NULL, (u_char *)iv,
320 fatal("cipher_init: EVP_CipherInit failed for %s",
334 if (EVP_CipherInit(&cc->evp, NULL, (u_char *)key, NULL, -1) == 0)
335 fatal("cipher_init: EVP_CipherInit: set key failed for %s",
/freebsd-9.3-release/crypto/openssl/crypto/evp/
H A Devp_enc.c87 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, function
123 return EVP_CipherInit(ctx, cipher, key, iv, 1);
136 return EVP_CipherInit(ctx, cipher, key, iv, 0);
H A Devp.h602 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
/freebsd-9.3-release/crypto/openssh/openbsd-compat/
H A Dopenssl-compat.c43 EVP_CipherInit(evp, type, key, iv, enc);
H A Dopenssl-compat.h122 # define EVP_CipherInit(a,b,c,d,e) ssh_EVP_CipherInit((a),(b),(c),(d),(e)) macro
/freebsd-9.3-release/contrib/tcpdump/
H A Dprint-esp.c127 if (EVP_CipherInit(&ctx, sa->evp, sa->secret, NULL, 0) < 0)
129 EVP_CipherInit(&ctx, NULL, NULL, iv, 0);
658 if (EVP_CipherInit(&ctx, sa->evp, secret, NULL, 0) < 0)
664 EVP_CipherInit(&ctx, NULL, NULL, p, 0);
/freebsd-9.3-release/crypto/openssl/ssl/
H A Dkssl.c2090 if (!EVP_CipherInit(&ciph_ctx, enc, kssl_ctx->key, iv, 0)) {
2092 "EVP_CipherInit error decrypting authenticator.\n");

Completed in 138 milliseconds