Home
last modified time | relevance | path

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

12

/openssl/doc/life-cycles/
H A Dcipher.dot21 initialised -> updated [label="EVP_CipherUpdate", weight=2];
22 updated -> updated [label="EVP_CipherUpdate"];
60 initialised -> updated [label="EVP_CipherUpdate", weight=2];
61 updated -> updated [label="EVP_CipherUpdate"];
/openssl/test/
H A 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()
H A 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()
H A Devp_fetch_prov_test.c273 || !TEST_true(EVP_CipherUpdate(ctx, ct, &ctlen, msg, len)) in encrypt_decrypt()
276 || !TEST_true(EVP_CipherUpdate(ctx, pt, &ptlen, ct, ctlen)) in encrypt_decrypt()
H A Dacvp_test.c886 || !TEST_true(EVP_CipherUpdate(ctx, out, &len, pt, pt_len)) in cipher_enc()
941 || !TEST_true(EVP_CipherUpdate(ctx, NULL, &len, NULL, pt_len)) in aes_ccm_enc_dec()
942 || !TEST_true(EVP_CipherUpdate(ctx, NULL, &len, aad, aad_len)) in aes_ccm_enc_dec()
943 || !TEST_int_eq(EVP_CipherUpdate(ctx, out, &len, pt, pt_len), pass)) in aes_ccm_enc_dec()
1039 || !TEST_true(EVP_CipherUpdate(ctx, NULL, &len, aad, aad_len)) in aes_gcm_enc_dec()
1040 || !TEST_true(EVP_CipherUpdate(ctx, out, &len, pt, pt_len))) in aes_gcm_enc_dec()
1679 if (!TEST_int_gt(EVP_CipherUpdate(ctx, out, &outlen, pt, 7), 0)) in aes_cfb1_bits_test()
H A Devp_extra_test.c4353 if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, t->input, t->inlen))) { in test_evp_init_seq()
4479 if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, t->input, t->inlen))) { in test_evp_reset()
4495 if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, t->input, t->inlen))) { in test_evp_reset()
4682 if (!TEST_true(EVP_CipherUpdate(ctx, NULL, &outlen3, gcmAAD, sizeof(gcmAAD)))) { in test_gcm_reinit()
4687 if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, gcmResetPlaintext, in test_gcm_reinit()
4717 if (!TEST_true(EVP_CipherUpdate(ctx, NULL, &outlen3, gcmAAD, sizeof(gcmAAD)))) { in test_gcm_reinit()
4721 if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, gcmResetPlaintext, in test_gcm_reinit()
4784 if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen, gcmDefaultPlaintext, in test_ivlen_change()
4794 if (!TEST_false(EVP_CipherUpdate(ctx, outbuf, &outlen, gcmDefaultPlaintext, in test_ivlen_change()
4855 if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen, gcmDefaultPlaintext, in test_keylen_change()
[all …]
H A Dfake_pipelineprov.c127 if (!EVP_CipherUpdate(ctx->cipher_ctxs[i], in fake_pipeline_update()
H A Devp_test.c1270 if (!EVP_CipherUpdate(ctx, NULL, &tmplen, NULL, out_len)) { in cipher_test_enc()
1288 if (!EVP_CipherUpdate(ctx, NULL, &chunklen, in cipher_test_enc()
1300 if (!EVP_CipherUpdate(ctx, NULL, &chunklen, expected->aad[i], 1)) in cipher_test_enc()
1305 if (!EVP_CipherUpdate(ctx, NULL, &chunklen, in cipher_test_enc()
1312 && !EVP_CipherUpdate(ctx, NULL, &chunklen, in cipher_test_enc()
1367 if (!EVP_CipherUpdate(ctx, tmp + out_misalign + tmplen, &chunklen, in cipher_test_enc()
1377 if (!EVP_CipherUpdate(ctx, tmp + out_misalign, &chunklen, in, 1)) in cipher_test_enc()
1384 if (!EVP_CipherUpdate(ctx, tmp + out_misalign + tmplen, &chunklen, in cipher_test_enc()
1392 if (!EVP_CipherUpdate(ctx, tmp + out_misalign + tmplen, &chunklen, in cipher_test_enc()
/openssl/providers/implementations/rands/
H A Ddrbg_ctr.c110 if (!EVP_CipherUpdate(ctr->ctx_df, out, &outlen, out, len) in ctr_BCC_block()
239 if (!EVP_CipherUpdate(ctr->ctx_ecb, ctr->KX, &outlen, ctr->KX + ctr->keylen, in ctr_df()
243 if (!EVP_CipherUpdate(ctr->ctx_ecb, ctr->KX + 16, &outlen, ctr->KX, in ctr_df()
248 if (!EVP_CipherUpdate(ctr->ctx_ecb, ctr->KX + 32, &outlen, in ctr_df()
282 if (!EVP_CipherUpdate(ctr->ctx_ecb, out, &outlen, V_tmp, len) in ctr_update()
449 if (!EVP_CipherUpdate(ctr->ctx_ctr, out, &outl, out, buflen) in drbg_ctr_generate()
/openssl/crypto/evp/
H A Dbio_enc.c181 if (!EVP_CipherUpdate(ctx->cipher, in enc_read()
199 if (!EVP_CipherUpdate(ctx->cipher, in enc_read()
268 if (!EVP_CipherUpdate(ctx->cipher, in enc_write()
H A Devp_enc.c537 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_CipherUpdate() function
/openssl/ssl/record/methods/
H A Dtls13_meth.c228 && EVP_CipherUpdate(enc_ctx, NULL, &lenu, NULL, in tls13_cipher()
230 || EVP_CipherUpdate(enc_ctx, NULL, &lenu, recheader, in tls13_cipher()
232 || EVP_CipherUpdate(enc_ctx, rec->data, &lenu, rec->input, in tls13_cipher()
H A Dssl3_meth.c156 if (!EVP_CipherUpdate(ds, rec->data, &outlen, rec->input, in ssl3_cipher()
H A Dtls1_meth.c366 if (!EVP_CipherUpdate(ds, recs[0].data, &outlen, recs[0].input, in tls1_cipher()
/openssl/ssl/quic/
H A Dquic_wire_pkt.c93 || !EVP_CipherUpdate(hpr->cipher_ctx, dst, &l, sample, 16)) { in hdr_generate_mask()
107 || !EVP_CipherUpdate(hpr->cipher_ctx, mask, &l, in hdr_generate_mask()
912 if (EVP_CipherUpdate(cctx, NULL, &l, buf, hdr_enc_len) != 1) { in ossl_quic_calculate_retry_integrity_tag()
918 if (EVP_CipherUpdate(cctx, NULL, &l, hdr->data, in ossl_quic_calculate_retry_integrity_tag()
H A Dquic_record_tx.c544 if (EVP_CipherUpdate(cctx, NULL, &l, hdr, hdr_len) != 1) { in qtx_encrypt_into_txe()
558 if (EVP_CipherUpdate(cctx, txe_data(txe) + txe->data_len, in qtx_encrypt_into_txe()
H A Dquic_record_rx.c732 if (EVP_CipherUpdate(cctx, NULL, &l, aad, aad_len) != 1) in qrx_decrypt_pkt_body()
736 if (EVP_CipherUpdate(cctx, dst, &l, src, src_len - el->tag_len) != 1) in qrx_decrypt_pkt_body()
/openssl/doc/man3/
H A DEVP_EncryptInit.pod23 EVP_CipherUpdate,
145 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
444 =item EVP_CipherInit_ex2(), EVP_CipherInit_ex(), EVP_CipherUpdate() and
457 EVP_CipherInit() / EVP_CipherUpdate() / EVP_CipherFinal() series of calls.
483 in applications, please consider using EVP_CipherUpdate() and
508 EVP_EncryptInit_ex2(), EVP_DecryptInit_ex2(), EVP_CipherUpdate() and
785 allows a single call to EVP_CipherUpdate().
1380 EVP_CipherInit_ex2() and EVP_CipherUpdate() return 1 for success and 0 for
1485 EVP_CipherUpdate() call in a single operation.
1816 if (!EVP_CipherUpdate(ctx, outbuf, &outlen, inbuf, inlen)) {
[all …]
H A DBIO_f_cipher.pod25 EVP_CipherInit(), EVP_CipherUpdate() and EVP_CipherFinal().
H A DEVP_CIPHER_meth_new.pod168 EVP_CipherUpdate().
198 The cipher function is called by EVP_CipherUpdate(),
/openssl/providers/fips/
H A Dself_test_kats.c89 && EVP_CipherUpdate(ctx, NULL, &tmp, t->aad, t->aad_len); in cipher_init()
114 || !EVP_CipherUpdate(ctx, ct_buf, &len, t->base.pt, in self_test_cipher()
138 && EVP_CipherUpdate(ctx, pt_buf, &len, in self_test_cipher()
/openssl/crypto/pkcs12/
H A Dp12_decr.c81 if (!EVP_CipherUpdate(ctx, out, &i, in, inlen)) { in PKCS12_pbe_crypt_ex()
/openssl/crypto/cms/
H A 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()
/openssl/doc/man7/
H A Dlife_cycle-cipher.pod85 | EVP_DecryptUpdate | EVP_CipherUpdate EVP_EncryptUpdate |
89 | | updated | EVP_CipherUpdate | |
135 EVP_CipherUpdate updated updated
216 <tr><th style="border:1px solid" align="left">EVP_CipherUpdate</th>
/openssl/include/openssl/
H A Devp.h810 __owur int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,

Completed in 204 milliseconds

12