/netbsd/crypto/external/bsd/openssh/dist/ |
H A D | cipher-chachapoly-libcrypto.c | 50 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 D | cipher.c | 324 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 D | cipher.dot | 18 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 D | aes256.c | 37 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 D | EVP_EncryptInit.pod | 23 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 D | BIO_f_cipher.pod | 25 EVP_CipherInit(), EVP_CipherUpdate() and EVP_CipherFinal().
|
H A D | EVP_CIPHER_meth_new.pod | 187 The cipher init function is called by EVP_CipherInit(),
|
/netbsd/external/bsd/libfido2/dist/fuzz/ |
H A D | wrapped.sym | 31 EVP_CipherInit
|
H A D | wrap.c | 113 EVP_CipherInit,
|
/netbsd/crypto/external/bsd/openssl.old/dist/crypto/evp/ |
H A D | evp_enc.c | 52 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 D | life_cycle-cipher.pod | 30 =item initialised using EVP_CipherInit 77 EVP_DecryptInit | | EVP_CipherInit | EVP_EncryptInit 130 …EVP_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 D | BIO_f_cipher.pod | 25 EVP_CipherInit(), EVP_CipherUpdate() and EVP_CipherFinal().
|
H A D | EVP_EncryptInit.pod | 29 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 D | EVP_CIPHER_meth_new.pod | 191 The cipher init function is called by EVP_CipherInit(),
|
/netbsd/crypto/external/bsd/openssl/dist/crypto/evp/ |
H A D | evp_enc.c | 400 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 D | crypto_openssl.c | 1157 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 D | largeblob.c | 361 EVP_CipherInit(ctx, cipher, fido_cred_largeblob_key_ptr(cred), in decode()
|
/netbsd/external/bsd/tcpdump/dist/ |
H A D | print-esp.c | 182 return EVP_CipherInit(ctx, cipher, key, iv, enc); in set_cipher_parameters()
|
H A D | configure.ac | 936 # 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 D | evp.h | 606 __owur int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
|
/netbsd/crypto/external/bsd/openssl.old/lib/libcrypto/ |
H A D | crypto.map | 1472 EVP_CipherInit;
|
/netbsd/crypto/external/bsd/openssl/dist/include/openssl/ |
H A D | evp.h | 783 __owur int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
|
/netbsd/crypto/external/bsd/openssl/lib/libcrypto/ |
H A D | crypto.map | 1701 EVP_CipherInit;
|
/netbsd/crypto/external/bsd/openssl.old/dist/util/ |
H A D | libcrypto.num | 1142 EVP_CipherInit 1133 1_1_0 EXIST::FUNCTION:
|
/netbsd/crypto/external/bsd/openssl/dist/util/ |
H A D | libcrypto.num | 1105 EVP_CipherInit 1133 3_0_0 EXIST::FUNCTION:
|