/external/openssh/ |
cipher-3des1.c | 89 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) {
|
cipher.c | 247 EVP_CipherInit(&cc->evp, type, (u_char *)key, (u_char *)iv, 250 if (EVP_CipherInit(&cc->evp, type, NULL, (u_char *)iv, 252 fatal("cipher_init: EVP_CipherInit failed for %s", 261 if (EVP_CipherInit(&cc->evp, NULL, (u_char *)key, NULL, -1) == 0) 262 fatal("cipher_init: EVP_CipherInit: set key failed for %s",
|
/external/openssh/openbsd-compat/ |
openssl-compat.c | 43 EVP_CipherInit(evp, type, key, iv, enc);
|
openssl-compat.h | 99 # define EVP_CipherInit(a,b,c,d,e) ssh_EVP_CipherInit((a),(b),(c),(d),(e))
|
/external/tcpdump/ |
print-esp.c | 476 if (EVP_CipherInit(&ctx, sa->evp, secret, NULL, 0) < 0) 482 EVP_CipherInit(&ctx, NULL, NULL, p, 0);
|
/external/chromium_org/third_party/openssl/openssl/crypto/evp/ |
evp_enc.c | 95 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, 286 return EVP_CipherInit(ctx, cipher, key, iv, 1); 298 return EVP_CipherInit(ctx, cipher, key, iv, 0);
|
evp.h | 598 int EVP_CipherInit(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, [all...] |
/external/openssl/crypto/evp/ |
evp_enc.c | 95 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, 286 return EVP_CipherInit(ctx, cipher, key, iv, 1); 298 return EVP_CipherInit(ctx, cipher, key, iv, 0);
|
evp.h | 598 int EVP_CipherInit(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, [all...] |
/external/ipsec-tools/src/racoon/ |
crypto_openssl.c | 1258 if (!EVP_CipherInit(&ctx, e, NULL, NULL, enc)) 1276 if (!EVP_CipherInit(&ctx, NULL, (u_char *) key->v, 1285 if (!EVP_CipherInit(&ctx, e, (u_char *) key->v, [all...] |
/external/chromium_org/third_party/openssl/openssl/include/openssl/ |
evp.h | 598 int EVP_CipherInit(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, [all...] |
/external/openssl/include/openssl/ |
evp.h | 598 int EVP_CipherInit(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, [all...] |
/external/chromium_org/third_party/openssl/openssl/ssl/ |
kssl.c | [all...] |
/external/openssl/ssl/ |
kssl.c | [all...] |