Home
last modified time | relevance | path

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

/openssl-master/doc/life-cycles/
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-master/ssl/record/
A Dssl3_record_tls13.c167 && EVP_CipherUpdate(ctx, NULL, &lenu, NULL, in tls13_enc()
169 || EVP_CipherUpdate(ctx, NULL, &lenu, recheader, in tls13_enc()
171 || EVP_CipherUpdate(ctx, rec->data, &lenu, rec->input, in tls13_enc()
A Dssl3_record.c891 if (!EVP_CipherUpdate(ds, rec->data, &outlen, rec->input, in ssl3_enc()
1164 if (!EVP_CipherUpdate(ds, recs[0].data, &outlen, recs[0].input, in tls1_enc()
/openssl-master/test/
A Dpbetest.c78 || !TEST_true(EVP_CipherUpdate(ctx, out, &i, pbe_plaintext, in test_pkcs5_pbe()
94 || !TEST_true(EVP_CipherUpdate(ctx, out, &i, exp, exp_len))) in test_pkcs5_pbe()
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()
A 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()
A 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()
A Devp_test.c858 if (!EVP_CipherUpdate(ctx, NULL, &tmplen, NULL, out_len)) { in cipher_test_enc()
867 if (!EVP_CipherUpdate(ctx, NULL, &chunklen, expected->aad[i], in cipher_test_enc()
877 if (!EVP_CipherUpdate(ctx, NULL, &chunklen, expected->aad[i], 1)) in cipher_test_enc()
882 if (!EVP_CipherUpdate(ctx, NULL, &chunklen, in cipher_test_enc()
889 && !EVP_CipherUpdate(ctx, NULL, &chunklen, in cipher_test_enc()
928 if (!EVP_CipherUpdate(ctx, tmp + out_misalign, &tmplen, in, in_len)) in cipher_test_enc()
933 if (!EVP_CipherUpdate(ctx, tmp + out_misalign, &chunklen, in, 1)) in cipher_test_enc()
940 if (!EVP_CipherUpdate(ctx, tmp + out_misalign + tmplen, &chunklen, in cipher_test_enc()
948 if (!EVP_CipherUpdate(ctx, tmp + out_misalign + tmplen, &chunklen, in cipher_test_enc()
A Devp_extra_test.c3433 if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, t->input, t->inlen))) { in test_evp_init_seq()
3521 if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, t->input, t->inlen))) { in test_evp_reset()
3537 if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, t->input, t->inlen))) { in test_evp_reset()
3635 if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, cfbPlaintext, sizeof(cfbPlaintext)))) { in test_evp_updated_iv()
3723 if (!TEST_true(EVP_CipherUpdate(ctx, NULL, &outlen3, gcmAAD, sizeof(gcmAAD)))) { in test_gcm_reinit()
3728 if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, gcmResetPlaintext, in test_gcm_reinit()
3758 if (!TEST_true(EVP_CipherUpdate(ctx, NULL, &outlen3, gcmAAD, sizeof(gcmAAD)))) { in test_gcm_reinit()
3762 if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, gcmResetPlaintext, in test_gcm_reinit()
/openssl-master/providers/implementations/rands/
A Ddrbg_ctr.c109 if (!EVP_CipherUpdate(ctr->ctx_df, out, &outlen, out, len) in ctr_BCC_block()
238 if (!EVP_CipherUpdate(ctr->ctx_ecb, ctr->KX, &outlen, ctr->KX + ctr->keylen, in ctr_df()
242 if (!EVP_CipherUpdate(ctr->ctx_ecb, ctr->KX + 16, &outlen, ctr->KX, in ctr_df()
247 if (!EVP_CipherUpdate(ctr->ctx_ecb, ctr->KX + 32, &outlen, in ctr_df()
281 if (!EVP_CipherUpdate(ctr->ctx_ecb, out, &outlen, V_tmp, len) in ctr_update()
439 if (!EVP_CipherUpdate(ctr->ctx_ctr, out, &outl, out, buflen) in drbg_ctr_generate()
/openssl-master/crypto/evp/
A 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()
A Devp_enc.c401 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_CipherUpdate() function
/openssl-master/providers/fips/
A Dself_test_kats.c81 && EVP_CipherUpdate(ctx, NULL, &tmp, t->aad, t->aad_len); in cipher_init()
106 || !EVP_CipherUpdate(ctx, ct_buf, &len, t->base.pt, in self_test_cipher()
130 && EVP_CipherUpdate(ctx, pt_buf, &len, in self_test_cipher()
/openssl-master/crypto/pkcs12/
A Dp12_decr.c75 if (!EVP_CipherUpdate(ctx, out, &i, in, inlen)) { in PKCS12_pbe_crypt_ex()
/openssl-master/crypto/cms/
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-master/doc/man3/
A DEVP_EncryptInit.pod21 EVP_CipherUpdate,
136 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
403 =item EVP_CipherInit_ex2(), EVP_CipherInit_ex(), EVP_CipherUpdate() and
416 EVP_CipherInit() / EVP_CipherUpdate() / EVP_CipherFinal() series of calls.
442 in applications, please consider using EVP_CipherUpdate() and
692 allows a single call to EVP_CipherUpdate().
1269 To specify additional authenticated data (AAD), a call to EVP_CipherUpdate(),
1362 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made
1394 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made
1576 if (!EVP_CipherUpdate(ctx, outbuf, &outlen, inbuf, inlen)) {
[all …]
A DEVP_CIPHER_meth_new.pod167 EVP_CipherUpdate().
197 The cipher function is called by EVP_CipherUpdate(),
A DBIO_f_cipher.pod25 EVP_CipherInit(), EVP_CipherUpdate() and EVP_CipherFinal().
/openssl-master/doc/man7/
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>
A Dmigration_guide.pod1246 Use the higher level functions EVP_CipherInit_ex2(), EVP_CipherUpdate() and
/openssl-master/include/openssl/
A Devp.h793 __owur int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
/openssl-master/
A DNEWS.md125 * Fixed an overflow in the EVP_CipherUpdate, EVP_EncryptUpdate and
A DCHANGES.md1641 Fixed the EVP_CipherUpdate, EVP_EncryptUpdate and EVP_DecryptUpdate
4982 Also EVP_CipherUpdate() is a synonym for EVP_EncryptUpdate(). All instances
6184 Also EVP_CipherUpdate() is a synonym for EVP_EncryptUpdate(). All instances
16980 EVP_CipherUpdate() would correctly report zero bytes had been decrypted.
/openssl-master/util/
A Dlibcrypto.num2281 EVP_CipherUpdate 2331 3_0_0 EXIST::FUNCTION:

Completed in 85 milliseconds