Symbol: EVP_CipherUpdate
crypto/krb5/src/lib/crypto/openssl/enc_provider/aes.c
181
!EVP_CipherUpdate(ctx, oblock, &outlen, dbuf, dlen) ||
crypto/krb5/src/lib/crypto/openssl/enc_provider/camellia.c
180
!EVP_CipherUpdate(ctx, oblock, &outlen, dbuf, dlen) ||
crypto/openssl/crypto/cms/cms_kari.c
231
if (!EVP_CipherUpdate(kari->ctx, NULL, &outlen, in, inlen))
crypto/openssl/crypto/cms/cms_kari.c
236
if (!EVP_CipherUpdate(kari->ctx, out, &outlen, in, inlen))
crypto/openssl/crypto/evp/bio_enc.c
182
if (!EVP_CipherUpdate(ctx->cipher,
crypto/openssl/crypto/evp/bio_enc.c
200
if (!EVP_CipherUpdate(ctx->cipher,
crypto/openssl/crypto/evp/bio_enc.c
269
if (!EVP_CipherUpdate(ctx->cipher,
crypto/openssl/crypto/pkcs12/p12_decr.c
83
if (!EVP_CipherUpdate(ctx, out, &i, in, inlen)) {
crypto/openssl/include/openssl/evp.h
817
__owur int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
crypto/openssl/providers/fips/self_test_kats.c
117
|| !EVP_CipherUpdate(ctx, ct_buf, &len, t->base.pt,
crypto/openssl/providers/fips/self_test_kats.c
142
&& EVP_CipherUpdate(ctx, pt_buf, &len,
crypto/openssl/providers/fips/self_test_kats.c
92
&& EVP_CipherUpdate(ctx, NULL, &tmp, t->aad, t->aad_len);
crypto/openssl/providers/implementations/rands/drbg_ctr.c
116
if (!EVP_CipherUpdate(ctr->ctx_df, out, &outlen, out, len)
crypto/openssl/providers/implementations/rands/drbg_ctr.c
244
if (!EVP_CipherUpdate(ctr->ctx_ecb, ctr->KX, &outlen, ctr->KX + ctr->keylen,
crypto/openssl/providers/implementations/rands/drbg_ctr.c
248
if (!EVP_CipherUpdate(ctr->ctx_ecb, ctr->KX + 16, &outlen, ctr->KX,
crypto/openssl/providers/implementations/rands/drbg_ctr.c
253
if (!EVP_CipherUpdate(ctr->ctx_ecb, ctr->KX + 32, &outlen,
crypto/openssl/providers/implementations/rands/drbg_ctr.c
287
if (!EVP_CipherUpdate(ctr->ctx_ecb, out, &outlen, V_tmp, len)
crypto/openssl/providers/implementations/rands/drbg_ctr.c
454
if (!EVP_CipherUpdate(ctr->ctx_ctr, out, &outl, out, buflen)
crypto/openssl/ssl/quic/quic_record_rx.c
962
if (EVP_CipherUpdate(cctx, NULL, &l, aad, aad_len) != 1)
crypto/openssl/ssl/quic/quic_record_rx.c
966
if (EVP_CipherUpdate(cctx, dst, &l, src, src_len - el->tag_len) != 1)
crypto/openssl/ssl/quic/quic_record_tx.c
544
if (EVP_CipherUpdate(cctx, NULL, &l, hdr, hdr_len) != 1) {
crypto/openssl/ssl/quic/quic_record_tx.c
558
if (EVP_CipherUpdate(cctx, txe_data(txe) + txe->data_len,
crypto/openssl/ssl/quic/quic_wire_pkt.c
107
|| !EVP_CipherUpdate(hpr->cipher_ctx, mask, &l,
crypto/openssl/ssl/quic/quic_wire_pkt.c
93
|| !EVP_CipherUpdate(hpr->cipher_ctx, dst, &l, sample, 16)) {
crypto/openssl/ssl/quic/quic_wire_pkt.c
940
if (EVP_CipherUpdate(cctx, NULL, &l, buf, hdr_enc_len) != 1) {
crypto/openssl/ssl/quic/quic_wire_pkt.c
946
if (EVP_CipherUpdate(cctx, NULL, &l, hdr->data,
crypto/openssl/ssl/record/methods/ssl3_meth.c
156
if (!EVP_CipherUpdate(ds, rec->data, &outlen, rec->input,
crypto/openssl/ssl/record/methods/tls13_meth.c
229
&& EVP_CipherUpdate(enc_ctx, NULL, &lenu, NULL,
crypto/openssl/ssl/record/methods/tls13_meth.c
232
|| EVP_CipherUpdate(enc_ctx, NULL, &lenu, recheader,
crypto/openssl/ssl/record/methods/tls13_meth.c
235
|| EVP_CipherUpdate(enc_ctx, rec->data, &lenu, rec->input,
crypto/openssl/ssl/record/methods/tls1_meth.c
379
if (!EVP_CipherUpdate(ds, recs[0].data, &outlen, recs[0].input,
crypto/openssl/test/acvp_test.c
1051
|| !TEST_true(EVP_CipherUpdate(ctx, NULL, &len, aad, aad_len))
crypto/openssl/test/acvp_test.c
1052
|| !TEST_true(EVP_CipherUpdate(ctx, out, &len, pt, pt_len)))
crypto/openssl/test/acvp_test.c
1693
if (!TEST_int_gt(EVP_CipherUpdate(ctx, out, &outlen, pt, 7), 0))
crypto/openssl/test/acvp_test.c
893
|| !TEST_true(EVP_CipherUpdate(ctx, out, &len, pt, pt_len))
crypto/openssl/test/acvp_test.c
950
|| !TEST_true(EVP_CipherUpdate(ctx, NULL, &len, NULL, pt_len))
crypto/openssl/test/acvp_test.c
951
|| !TEST_true(EVP_CipherUpdate(ctx, NULL, &len, aad, aad_len))
crypto/openssl/test/acvp_test.c
952
|| !TEST_int_eq(EVP_CipherUpdate(ctx, out, &len, pt, pt_len), pass))
crypto/openssl/test/afalgtest.c
80
|| !TEST_true(EVP_CipherUpdate(ctx, ebuf, &encl, in, BUFFER_SIZE))
crypto/openssl/test/afalgtest.c
90
|| !TEST_true(EVP_CipherUpdate(ctx, dbuf, &decl, ebuf, encl))
crypto/openssl/test/evp_extra_test.c
4980
if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, t->input, t->inlen))) {
crypto/openssl/test/evp_extra_test.c
5039
|| !TEST_true(EVP_CipherUpdate(ctx, outbuf1, &outlen1, t->input, t->inlen))
crypto/openssl/test/evp_extra_test.c
5046
|| !TEST_true(EVP_CipherUpdate(ctx, outbuf2, &outlen2, t->input, t->inlen))
crypto/openssl/test/evp_extra_test.c
5103
if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, t->input, t->inlen))) {
crypto/openssl/test/evp_extra_test.c
5119
if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, t->input, t->inlen))) {
crypto/openssl/test/evp_extra_test.c
5193
if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, cfbPlaintext, sizeof(cfbPlaintext)))) {
crypto/openssl/test/evp_extra_test.c
5278
if (!TEST_true(EVP_CipherUpdate(ctx, NULL, &outlen3, gcmAAD, sizeof(gcmAAD)))) {
crypto/openssl/test/evp_extra_test.c
5283
if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, gcmResetPlaintext,
crypto/openssl/test/evp_extra_test.c
5313
if (!TEST_true(EVP_CipherUpdate(ctx, NULL, &outlen3, gcmAAD, sizeof(gcmAAD)))) {
crypto/openssl/test/evp_extra_test.c
5317
if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, gcmResetPlaintext,
crypto/openssl/test/evp_extra_test.c
5380
if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen, gcmDefaultPlaintext,
crypto/openssl/test/evp_extra_test.c
5390
if (!TEST_false(EVP_CipherUpdate(ctx, outbuf, &outlen, gcmDefaultPlaintext,
crypto/openssl/test/evp_extra_test.c
5451
if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen, gcmDefaultPlaintext,
crypto/openssl/test/evp_extra_test.c
5461
if (!TEST_false(EVP_CipherUpdate(ctx, outbuf, &outlen, gcmDefaultPlaintext,
crypto/openssl/test/evp_fetch_prov_test.c
273
|| !TEST_true(EVP_CipherUpdate(ctx, ct, &ctlen, msg, len))
crypto/openssl/test/evp_fetch_prov_test.c
276
|| !TEST_true(EVP_CipherUpdate(ctx, pt, &ptlen, ct, ctlen))
crypto/openssl/test/evp_skey_test.c
160
|| !TEST_int_gt(EVP_CipherUpdate(ctx, encrypted_skey, &enc_len, data, DATA_SIZE), 0)
crypto/openssl/test/evp_skey_test.c
170
|| !TEST_int_gt(EVP_CipherUpdate(ctx, encrypted_raw, &enc_len, data, DATA_SIZE), 0)
crypto/openssl/test/evp_skey_test.c
237
|| !TEST_int_gt(EVP_CipherUpdate(ctx, encrypted_skey, &enc_len, data, DATA_SIZE), 0)
crypto/openssl/test/evp_skey_test.c
247
|| !TEST_int_gt(EVP_CipherUpdate(ctx, encrypted_raw, &enc_len, data, DATA_SIZE), 0)
crypto/openssl/test/evp_test.c
1282
if (!EVP_CipherUpdate(ctx, NULL, &tmplen, NULL, out_len)) {
crypto/openssl/test/evp_test.c
1300
if (!EVP_CipherUpdate(ctx, NULL, &chunklen,
crypto/openssl/test/evp_test.c
1312
if (!EVP_CipherUpdate(ctx, NULL, &chunklen, expected->aad[i], 1))
crypto/openssl/test/evp_test.c
1317
if (!EVP_CipherUpdate(ctx, NULL, &chunklen,
crypto/openssl/test/evp_test.c
1324
&& !EVP_CipherUpdate(ctx, NULL, &chunklen,
crypto/openssl/test/evp_test.c
1379
if (!EVP_CipherUpdate(ctx, tmp + out_misalign + tmplen, &chunklen,
crypto/openssl/test/evp_test.c
1389
if (!EVP_CipherUpdate(ctx, tmp + out_misalign, &chunklen, in, 1))
crypto/openssl/test/evp_test.c
1396
if (!EVP_CipherUpdate(ctx, tmp + out_misalign + tmplen, &chunklen,
crypto/openssl/test/evp_test.c
1404
if (!EVP_CipherUpdate(ctx, tmp + out_misalign + tmplen, &chunklen,
crypto/openssl/test/fake_pipelineprov.c
127
if (!EVP_CipherUpdate(ctx->cipher_ctxs[i],
crypto/openssl/test/pbetest.c
157
|| !TEST_true(EVP_CipherUpdate(ctx, out, &i, pbe_plaintext,
crypto/openssl/test/pbetest.c
173
|| !TEST_true(EVP_CipherUpdate(ctx, out, &i, exp, exp_len)))
sys/geom/eli/g_eli_crypto.c
167
if (EVP_CipherUpdate(ctx, data, &outsize, data, datasize) == 0) {
tests/sys/kern/ktls_test.c
326
if (EVP_CipherUpdate(ctx, (u_char *)output, &outl,
tools/tools/crypto/cryptocheck.c
732
if (EVP_CipherUpdate(ctx, (u_char *)output, &outl,