Home
last modified time | relevance | path

Searched refs:EVP_CipherInit (Results 1 – 25 of 26) sorted by relevance

12

/netbsd/crypto/external/bsd/openssh/dist/
H A Dcipher-chachapoly-libcrypto.c50 if (!EVP_CipherInit(ctx->main_evp, EVP_chacha20(), key, NULL, 1)) in chachapoly_new()
52 if (!EVP_CipherInit(ctx->header_evp, EVP_chacha20(), key + 32, NULL, 1)) in chachapoly_new()
96 if (!EVP_CipherInit(ctx->main_evp, NULL, NULL, seqbuf, 1) || in chachapoly_crypt()
116 if (!EVP_CipherInit(ctx->header_evp, NULL, NULL, seqbuf, 1) || in chachapoly_crypt()
125 if (!EVP_CipherInit(ctx->main_evp, NULL, NULL, seqbuf, 1) || in chachapoly_crypt()
155 if (!EVP_CipherInit(ctx->header_evp, NULL, NULL, seqbuf, 0)) in chachapoly_get_length()
H A Dcipher.c324 if (EVP_CipherInit(cc->evp, type, NULL, (const u_char *)iv, in cipher_init()
/netbsd/crypto/external/bsd/openssl/dist/doc/life-cycles/
H A Dcipher.dot18 newed -> initialised [label="EVP_CipherInit"];
19 initialised -> initialised [label="EVP_CipherInit\n(not required but allowed)",
57 newed -> initialised [label="EVP_CipherInit"];
58 initialised -> initialised [label="EVP_CipherInit\n(not required but allowed)",
/netbsd/external/bsd/libfido2/dist/src/
H A Daes256.c37 if (EVP_CipherInit(ctx, cipher, key->ptr, iv, encrypt) == 0 || in aes256_cbc()
145 if (EVP_CipherInit(ctx, cipher, key->ptr, nonce->ptr, encrypt) == 0) { in aes256_gcm()
/netbsd/crypto/external/bsd/openssl.old/dist/doc/man3/
H A DEVP_EncryptInit.pod23 EVP_CipherInit,
87 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type,
192 for another EVP_CipherInit() / EVP_CipherUpdate() / EVP_CipherFinal()
195 EVP_EncryptInit(), EVP_DecryptInit() and EVP_CipherInit() behave in a
271 the key is set. For example EVP_CipherInit() will be called with the IV and
273 EVP_CipherInit() again with all parameters except the key set to NULL. It is
496 EVP_CipherInit() and EVP_CipherFinal() are obsolete but are retained for
502 There are some differences between functions EVP_CipherInit() and
503 EVP_CipherInit_ex(), significant in some circumstances. EVP_CipherInit() fills
504 the passed context object with zeros. As a consequence, EVP_CipherInit() does
H A DBIO_f_cipher.pod25 EVP_CipherInit(), EVP_CipherUpdate() and EVP_CipherFinal().
H A DEVP_CIPHER_meth_new.pod187 The cipher init function is called by EVP_CipherInit(),
/netbsd/external/bsd/libfido2/dist/fuzz/
H A Dwrapped.sym31 EVP_CipherInit
H A Dwrap.c113 EVP_CipherInit,
/netbsd/crypto/external/bsd/openssl.old/dist/crypto/evp/
H A Devp_enc.c52 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit() function
238 return EVP_CipherInit(ctx, cipher, key, iv, 1); in EVP_EncryptInit()
251 return EVP_CipherInit(ctx, cipher, key, iv, 0); in EVP_DecryptInit()
/netbsd/crypto/external/bsd/openssl/dist/doc/man7/
H A Dlife_cycle-cipher.pod30 =item initialised using EVP_CipherInit
77 EVP_DecryptInit | | EVP_CipherInit | EVP_EncryptInit
130EVP_CipherInit initialised initialised initialised initialised initialised init…
183 <tr><th style="border:1px solid" align="left">EVP_CipherInit</th>
/netbsd/crypto/external/bsd/openssl/dist/doc/man3/
H A DBIO_f_cipher.pod25 EVP_CipherInit(), EVP_CipherUpdate() and EVP_CipherFinal().
H A DEVP_EncryptInit.pod29 EVP_CipherInit,
148 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type,
413 EVP_CipherInit() / EVP_CipherUpdate() / EVP_CipherFinal() series of calls.
415 =item EVP_EncryptInit(), EVP_DecryptInit() and EVP_CipherInit()
609 the key is set. For example EVP_CipherInit() will be called with the IV and
611 EVP_CipherInit() again with all parameters except the key set to NULL. It is
1468 EVP_CipherInit(), EVP_CipherInit_ex() and EVP_CipherFinal() are obsolete
1475 There are some differences between functions EVP_CipherInit() and
1476 EVP_CipherInit_ex(), significant in some circumstances. EVP_CipherInit() fills
1477 the passed context object with zeros. As a consequence, EVP_CipherInit() does
H A DEVP_CIPHER_meth_new.pod191 The cipher init function is called by EVP_CipherInit(),
/netbsd/crypto/external/bsd/openssl/dist/crypto/evp/
H A Devp_enc.c400 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit() function
443 return EVP_CipherInit(ctx, cipher, key, iv, 1); in EVP_EncryptInit()
463 return EVP_CipherInit(ctx, cipher, key, iv, 0); in EVP_DecryptInit()
/netbsd/crypto/dist/ipsec-tools/src/racoon/
H A Dcrypto_openssl.c1157 if (!EVP_CipherInit(ctx, e, NULL, NULL, enc)) in evp_crypt()
1167 if (!EVP_CipherInit(ctx, NULL, (u_char *)key->v, in evp_crypt()
1172 if (!EVP_CipherInit(ctx, e, (u_char *) key->v, in evp_crypt()
/netbsd/external/bsd/libfido2/dist/tools/
H A Dlargeblob.c361 EVP_CipherInit(ctx, cipher, fido_cred_largeblob_key_ptr(cred), in decode()
/netbsd/external/bsd/tcpdump/dist/
H A Dprint-esp.c182 return EVP_CipherInit(ctx, cipher, key, iv, enc); in set_cipher_parameters()
H A Dconfigure.ac936 # You Can't Do That with EVP_CipherInit(),
937 # because a call to EVP_CipherInit() will
/netbsd/crypto/external/bsd/openssl.old/dist/include/openssl/
H A Devp.h606 __owur int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
/netbsd/crypto/external/bsd/openssl.old/lib/libcrypto/
H A Dcrypto.map1472 EVP_CipherInit;
/netbsd/crypto/external/bsd/openssl/dist/include/openssl/
H A Devp.h783 __owur int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
/netbsd/crypto/external/bsd/openssl/lib/libcrypto/
H A Dcrypto.map1701 EVP_CipherInit;
/netbsd/crypto/external/bsd/openssl.old/dist/util/
H A Dlibcrypto.num1142 EVP_CipherInit 1133 1_1_0 EXIST::FUNCTION:
/netbsd/crypto/external/bsd/openssl/dist/util/
H A Dlibcrypto.num1105 EVP_CipherInit 1133 3_0_0 EXIST::FUNCTION:

12