Home
last modified time | relevance | path

Searched refs:EVP_CipherUpdate (Results 1 – 22 of 22) sorted by relevance

/netbsd/src/crypto/external/bsd/openssl/dist/test/
Dafalgtest.c86 || !TEST_true(EVP_CipherUpdate(ctx, ebuf, &encl, in, BUFFER_SIZE)) in test_afalg_aes_cbc()
96 || !TEST_true(EVP_CipherUpdate(ctx, dbuf, &decl, ebuf, encl)) in test_afalg_aes_cbc()
Dpbetest.c80 || !TEST_true(EVP_CipherUpdate(ctx, out, &i, pbe_plaintext, in test_pkcs5_pbe()
96 || !TEST_true(EVP_CipherUpdate(ctx, out, &i, exp, exp_len))) in test_pkcs5_pbe()
Devp_fetch_prov_test.c252 || !TEST_true(EVP_CipherUpdate(ctx, ct, &ctlen, msg, len)) in encrypt_decrypt()
255 || !TEST_true(EVP_CipherUpdate(ctx, pt, &ptlen, ct, ctlen)) in encrypt_decrypt()
Dacvp_test.c688 || !TEST_true(EVP_CipherUpdate(ctx, out, &len, pt, pt_len)) in cipher_enc()
743 || !TEST_true(EVP_CipherUpdate(ctx, NULL, &len, NULL, pt_len)) in aes_ccm_enc_dec()
744 || !TEST_true(EVP_CipherUpdate(ctx, NULL, &len, aad, aad_len)) in aes_ccm_enc_dec()
745 || !TEST_int_eq(EVP_CipherUpdate(ctx, out, &len, pt, pt_len), pass)) in aes_ccm_enc_dec()
840 || !TEST_true(EVP_CipherUpdate(ctx, NULL, &len, aad, aad_len)) in aes_gcm_enc_dec()
841 || !TEST_true(EVP_CipherUpdate(ctx, out, &len, pt, pt_len))) in aes_gcm_enc_dec()
1424 if (!TEST_int_gt(EVP_CipherUpdate(ctx, out, &outlen, pt, 7), 0)) in aes_cfb1_bits_test()
Devp_extra_test.c3895 if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, t->input, t->inlen))) { in test_evp_init_seq()
3953 || !TEST_true(EVP_CipherUpdate(ctx, outbuf1, &outlen1, t->input, t->inlen)) in test_evp_reinit_seq()
3960 || !TEST_true(EVP_CipherUpdate(ctx, outbuf2, &outlen2, t->input, t->inlen)) in test_evp_reinit_seq()
4021 if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, t->input, t->inlen))) { in test_evp_reset()
4037 if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, t->input, t->inlen))) { in test_evp_reset()
4135 if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, cfbPlaintext, sizeof(cfbPlaintext)))) { in test_evp_updated_iv()
4223 if (!TEST_true(EVP_CipherUpdate(ctx, NULL, &outlen3, gcmAAD, sizeof(gcmAAD)))) { in test_gcm_reinit()
4228 if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, gcmResetPlaintext, in test_gcm_reinit()
4258 if (!TEST_true(EVP_CipherUpdate(ctx, NULL, &outlen3, gcmAAD, sizeof(gcmAAD)))) { in test_gcm_reinit()
4262 if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, gcmResetPlaintext, in test_gcm_reinit()
[all …]
Devp_test.c870 if (!EVP_CipherUpdate(ctx, NULL, &tmplen, NULL, out_len)) { in cipher_test_enc()
879 if (!EVP_CipherUpdate(ctx, NULL, &chunklen, expected->aad[i], in cipher_test_enc()
889 if (!EVP_CipherUpdate(ctx, NULL, &chunklen, expected->aad[i], 1)) in cipher_test_enc()
894 if (!EVP_CipherUpdate(ctx, NULL, &chunklen, in cipher_test_enc()
901 && !EVP_CipherUpdate(ctx, NULL, &chunklen, in cipher_test_enc()
940 if (!EVP_CipherUpdate(ctx, tmp + out_misalign, &tmplen, in, in_len)) in cipher_test_enc()
945 if (!EVP_CipherUpdate(ctx, tmp + out_misalign, &chunklen, in, 1)) in cipher_test_enc()
952 if (!EVP_CipherUpdate(ctx, tmp + out_misalign + tmplen, &chunklen, in cipher_test_enc()
960 if (!EVP_CipherUpdate(ctx, tmp + out_misalign + tmplen, &chunklen, in cipher_test_enc()
/netbsd/src/crypto/external/bsd/openssl/dist/crypto/evp/
Dbio_enc.c179 if (!EVP_CipherUpdate(ctx->cipher, in enc_read()
197 if (!EVP_CipherUpdate(ctx->cipher, in enc_read()
266 if (!EVP_CipherUpdate(ctx->cipher, in enc_write()
Devp_enc.c456 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_CipherUpdate() function
/netbsd/src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
Devp.h61 #define EVP_CipherUpdate hc_EVP_CipherUpdate macro
332 int EVP_CipherUpdate(EVP_CIPHER_CTX *, void *, int *, void *, size_t);
Dexample_evp_cipher.c146 ret = EVP_CipherUpdate(&ctx, obuf, &olen, ibuf, ilen); in main()
Dundef.h97 #undef EVP_CipherUpdate
Devp.c855 EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, void *out, int *outlen, in EVP_CipherUpdate() function
/netbsd/src/crypto/external/bsd/openssl/dist/crypto/cms/
Dcms_kari.c231 if (!EVP_CipherUpdate(kari->ctx, NULL, &outlen, in, inlen)) in cms_kek_cipher()
236 if (!EVP_CipherUpdate(kari->ctx, out, &outlen, in, inlen)) in cms_kek_cipher()
/netbsd/src/crypto/external/bsd/openssl/dist/crypto/pkcs12/
Dp12_decr.c75 if (!EVP_CipherUpdate(ctx, out, &i, in, inlen)) { in PKCS12_pbe_crypt_ex()
/netbsd/src/external/bsd/ppp/dist/pppd/
Dppp-des.c86 return EVP_CipherUpdate((EVP_CIPHER_CTX*) ctx->priv, out, outl, in, inl); in des_update()
/netbsd/src/crypto/external/bsd/libsaslc/dist/src/
Dmech_digestmd5.c1192 rv = EVP_CipherUpdate(ctx->evp_ctx, out, &outl, in, (int)inlen); in cipher_update()
/netbsd/src/external/bsd/wpa/dist/src/crypto/
Dcrypto_openssl.c388 if (!EVP_CipherUpdate(ctx, skip_buf, &outl, skip_buf, len)) in rc4_skip()
393 if (EVP_CipherUpdate(ctx, data, &outl, data, data_len)) in rc4_skip()
/netbsd/src/crypto/external/bsd/openssl/lib/libcrypto/
Dcrypto.map1704 EVP_CipherUpdate;
Dcrypto.expsym1702 EVP_CipherUpdate@@OPENSSL_3.0.0
/netbsd/src/crypto/external/bsd/openssl/dist/
DNEWS.md255 * Fixed an overflow in the EVP_CipherUpdate, EVP_EncryptUpdate and
DCHANGES.md318 application has to call `EVP_EncryptUpdate()` (or `EVP_CipherUpdate()`)
2605 Fixed the EVP_CipherUpdate, EVP_EncryptUpdate and EVP_DecryptUpdate
5946 Also EVP_CipherUpdate() is a synonym for EVP_EncryptUpdate(). All instances
7148 Also EVP_CipherUpdate() is a synonym for EVP_EncryptUpdate(). All instances
17944 EVP_CipherUpdate() would correctly report zero bytes had been decrypted.
/netbsd/src/crypto/external/bsd/openssl/dist/util/
Dlibcrypto.num2281 EVP_CipherUpdate 2331 3_0_0 EXIST::FUNCTION: