OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EVP_CipherInit
(Results
1 - 4
of
4
) sorted by null
/external/tcpdump/
print-esp.c
163
if (
EVP_CipherInit
(&ctx, sa->evp, sa->secret, NULL, 0) < 0)
165
EVP_CipherInit
(&ctx, NULL, NULL, iv, 0);
685
if (
EVP_CipherInit
(&ctx, sa->evp, secret, NULL, 0) < 0)
689
EVP_CipherInit
(&ctx, NULL, NULL, p, 0);
/external/boringssl/src/crypto/cipher/
cipher.c
607
int
EVP_CipherInit
(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
617
return
EVP_CipherInit
(ctx, cipher, key, iv, 1);
622
return
EVP_CipherInit
(ctx, cipher, key, iv, 0);
/external/boringssl/src/include/openssl/
cipher.h
376
/*
EVP_CipherInit
acts like EVP_CipherInit_ex except that |EVP_CIPHER_CTX_init|
378
OPENSSL_EXPORT int
EVP_CipherInit
(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
382
/* EVP_EncryptInit calls |
EVP_CipherInit
| with |enc| equal to one. */
387
/* EVP_DecryptInit calls |
EVP_CipherInit
| with |enc| equal to zero. */
/external/ipsec-tools/src/racoon/
crypto_openssl.c
1273
if (!
EVP_CipherInit
(&ctx, e, NULL, NULL, enc))
1291
if (!
EVP_CipherInit
(&ctx, NULL, (u_char *) key->v,
1301
if (!
EVP_CipherInit
(&ctx, e, (u_char *) key->v,
[
all
...]
Completed in 46 milliseconds