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

/macosx-10.10/OpenSSH-189/openssh/
H A Dcipher-3des1.c93 EVP_CipherInit(&c->k1, EVP_des_cbc(), k1, NULL, enc);
94 EVP_CipherInit(&c->k2, EVP_des_cbc(), k2, NULL, !enc);
95 EVP_CipherInit(&c->k3, EVP_des_cbc(), k3, NULL, enc);
97 if (EVP_CipherInit(&c->k1, EVP_des_cbc(), k1, NULL, enc) == 0 ||
98 EVP_CipherInit(&c->k2, EVP_des_cbc(), k2, NULL, !enc) == 0 ||
99 EVP_CipherInit(&c->k3, EVP_des_cbc(), k3, NULL, enc) == 0) {
H A Dcipher.c267 EVP_CipherInit(&cc->evp, type, (u_char *)key, (u_char *)iv,
270 if (EVP_CipherInit(&cc->evp, type, NULL, (u_char *)iv,
272 fatal("cipher_init: EVP_CipherInit failed for %s",
286 if (EVP_CipherInit(&cc->evp, NULL, (u_char *)key, NULL, -1) == 0)
287 fatal("cipher_init: EVP_CipherInit: set key failed for %s",
/macosx-10.10/OpenSSH-189/openssh/openbsd-compat/
H A Dopenssl-compat.c51 EVP_CipherInit(evp, type, key, iv, enc);
H A Dopenssl-compat.h129 # define EVP_CipherInit(a,b,c,d,e) ssh_EVP_CipherInit((a),(b),(c),(d),(e)) macro
/macosx-10.10/OpenSSL098-52/src/crypto/evp/
H A Devp_enc.c87 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, function
120 return EVP_CipherInit(ctx, cipher, key, iv, 1);
132 return EVP_CipherInit(ctx, cipher, key, iv, 0);
H A Devp.h594 int EVP_CipherInit(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher,
/macosx-10.10/ruby-106/ruby/ext/openssl/
H A Dopenssl_missing.h106 # define EVP_CipherInit_ex(ctx, type, impl, key, iv, enc) EVP_CipherInit((ctx), (type), (key), (iv), (enc))
/macosx-10.10/OpenSSH-189/osslshim/ossl/
H A Dossl-evp.h84 #define EVP_CipherInit ossl_EVP_CipherInit macro
413 int EVP_CipherInit(EVP_CIPHER_CTX *, const EVP_CIPHER *, const void *,
H A Dossl-evp.c950 EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *c, const void *key, function
/macosx-10.10/tcpdump-61/tcpdump/
H A Dprint-esp.c366 if (EVP_CipherInit(&ctx, sa->evp, sa->secret, NULL, 0) < 0)
368 EVP_CipherInit(&ctx, NULL, NULL, iv, 0);
939 if (EVP_CipherInit(&ctx, sa->evp, secret, NULL, 0) < 0)
945 EVP_CipherInit(&ctx, NULL, NULL, p, 0);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/openssl/
H A Devp.h519 void EVP_CipherInit(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *type,
/macosx-10.10/OpenSSL098-52/src/include/openssl/
H A Devp.h594 int EVP_CipherInit(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher,
/macosx-10.10/OpenSSL098-52/src/ssl/
H A Dkssl.c2077 if (!EVP_CipherInit(&ciph_ctx,enc,kssl_ctx->key,iv,0))
2080 "EVP_CipherInit error decrypting authenticator.\n");

Completed in 274 milliseconds