/openssl-master/doc/life-cycles/ |
A D | cipher.dot | 21 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 D | ssl3_record_tls13.c | 167 && 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 D | ssl3_record.c | 891 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 D | pbetest.c | 78 || !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 D | afalgtest.c | 86 || !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 D | evp_fetch_prov_test.c | 252 || !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 D | acvp_test.c | 688 || !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 D | evp_test.c | 858 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 D | evp_extra_test.c | 3433 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 D | drbg_ctr.c | 109 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 D | bio_enc.c | 179 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 D | evp_enc.c | 401 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_CipherUpdate() function
|
/openssl-master/providers/fips/ |
A D | self_test_kats.c | 81 && 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 D | p12_decr.c | 75 if (!EVP_CipherUpdate(ctx, out, &i, in, inlen)) { in PKCS12_pbe_crypt_ex()
|
/openssl-master/crypto/cms/ |
A D | cms_kari.c | 231 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 D | EVP_EncryptInit.pod | 21 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 D | EVP_CIPHER_meth_new.pod | 167 EVP_CipherUpdate(). 197 The cipher function is called by EVP_CipherUpdate(),
|
A D | BIO_f_cipher.pod | 25 EVP_CipherInit(), EVP_CipherUpdate() and EVP_CipherFinal().
|
/openssl-master/doc/man7/ |
A D | life_cycle-cipher.pod | 85 | 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 D | migration_guide.pod | 1246 Use the higher level functions EVP_CipherInit_ex2(), EVP_CipherUpdate() and
|
/openssl-master/include/openssl/ |
A D | evp.h | 793 __owur int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
|
/openssl-master/ |
A D | NEWS.md | 125 * Fixed an overflow in the EVP_CipherUpdate, EVP_EncryptUpdate and
|
A D | CHANGES.md | 1641 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 D | libcrypto.num | 2281 EVP_CipherUpdate 2331 3_0_0 EXIST::FUNCTION:
|