/openssl/demos/cipher/ |
H A D | aesccm.c | 116 if (!EVP_EncryptUpdate(ctx, NULL, &outlen, NULL, sizeof(ccm_pt))) in aes_ccm_encrypt() 120 if (!EVP_EncryptUpdate(ctx, NULL, &outlen, ccm_adata, sizeof(ccm_adata))) in aes_ccm_encrypt() 124 if (!EVP_EncryptUpdate(ctx, outbuf, &outlen, ccm_pt, sizeof(ccm_pt))) in aes_ccm_encrypt()
|
H A D | aesgcm.c | 110 if (!EVP_EncryptUpdate(ctx, NULL, &outlen, gcm_aad, sizeof(gcm_aad))) in aes_gcm_encrypt() 114 if (!EVP_EncryptUpdate(ctx, outbuf, &outlen, gcm_pt, sizeof(gcm_pt))) in aes_gcm_encrypt()
|
H A D | aeskeywrap.c | 86 if (!EVP_EncryptUpdate(ctx, outbuf, &outlen, wrap_pt, sizeof(wrap_pt))) in aes_wrap_encrypt()
|
H A D | ariacbc.c | 83 if (!EVP_EncryptUpdate(ctx, outbuf, &outlen, cbc_pt, sizeof(cbc_pt))) in aria_cbc_encrypt()
|
/openssl/providers/implementations/ciphers/ |
H A D | cipher_aes_gcm_siv_hw.c | 71 if (!EVP_EncryptUpdate(ctx->ecb_ctx, output, &out_len, data.block, BLOCK_SIZE)) in aes_gcm_siv_initkey() 86 if (!EVP_EncryptUpdate(ctx->ecb_ctx, output, &out_len, data.block, BLOCK_SIZE)) in aes_gcm_siv_initkey() 197 error |= !EVP_EncryptUpdate(ctx->ecb_ctx, ctx->tag, &out_len, S_s, sizeof(S_s)); in aes_gcm_siv_encrypt() 267 error |= !EVP_EncryptUpdate(ctx->ecb_ctx, ctx->tag, &out_len, S_s, sizeof(S_s)); in aes_gcm_siv_decrypt() 357 … error |= !EVP_EncryptUpdate(ctx->ecb_ctx, keystream, &out_len, (uint8_t*)&block, sizeof(block)); in aes_gcm_siv_ctr32()
|
/openssl/doc/man7/ |
H A D | EVP_CIPHER-SM4.pod | 43 L<EVP_EncryptUpdate(3)> or L<EVP_DecryptUpdate(3)> call requires each input 44 to be a multiple of the blocksize. Only the final EVP_EncryptUpdate() or
|
H A D | EVP_CIPHER-AES.pod | 69 means to obtain correct results there can be only one L<EVP_EncryptUpdate(3)> 73 L<EVP_EncryptUpdate(3)> or L<EVP_DecryptUpdate(3)> call requires each input 74 to be a multiple of the blocksize. Only the final EVP_EncryptUpdate() or
|
H A D | life_cycle-cipher.pod | 85 | EVP_DecryptUpdate | EVP_CipherUpdate EVP_EncryptUpdate | 100 v v v EVP_EncryptUpdate 138 …EVP_EncryptUpdate … 238 <tr><th style="border:1px solid" align="left">EVP_EncryptUpdate</th>
|
H A D | provider-cipher.pod | 79 L<EVP_EncryptUpdate(3)> and L<EVP_EncryptFinal(3)> (as well as the decrypt 176 locations, the requirements of L<EVP_EncryptUpdate(3)> and L<EVP_DecryptUpdate(3)> 178 Similarly, the requirements of L<EVP_EncryptUpdate(3)> and L<EVP_DecryptUpdate(3)>
|
/openssl/test/ |
H A D | aesgcmtest.c | 52 && TEST_true(EVP_EncryptUpdate(ctx, NULL, &outlen, gcm_aad, in do_encrypt() 54 && TEST_true(EVP_EncryptUpdate(ctx, ct, ct_len, gcm_pt, in do_encrypt()
|
H A D | evp_libctx_test.c | 403 || !TEST_true(EVP_EncryptUpdate(ctx, out1, &out1_len, in, sizeof(in))) in test_cipher_reinit() 405 || !TEST_int_eq(EVP_EncryptUpdate(ctx, out2, &out2_len, in, sizeof(in)), in test_cipher_reinit() 409 || !TEST_int_eq(EVP_EncryptUpdate(ctx, out3, &out3_len, in, sizeof(in)), in test_cipher_reinit() 497 || !TEST_true(EVP_EncryptUpdate(ctx, out1, &out1_len, in, in_len)) in test_cipher_reinit_partialupdate() 499 || !TEST_true(EVP_EncryptUpdate(ctx, out2, &out2_len, in, in_len))) in test_cipher_reinit_partialupdate() 508 || !TEST_true(EVP_EncryptUpdate(ctx, out3, &out3_len, in, in_len))) in test_cipher_reinit_partialupdate()
|
H A D | evp_extra_test.c | 3453 || !TEST_true(EVP_EncryptUpdate(ctx, ciphertext, &ctlen, msg, in test_decrypt_null_chunks() 3456 || !TEST_true(EVP_EncryptUpdate(ctx, ciphertext + ctlen, &tmp, NULL, in test_decrypt_null_chunks() 3459 || !TEST_true(EVP_EncryptUpdate(ctx, ciphertext + ctlen, &tmp, in test_decrypt_null_chunks() 3846 || !TEST_true(EVP_EncryptUpdate(ctx, ciphertext, &len, msg, in test_evp_iv_aes() 3963 || !TEST_true(EVP_EncryptUpdate(ctx, ciphertext, &len, msg, in test_evp_iv_des() 5461 if (!TEST_true(EVP_EncryptUpdate(ctx2, buf, &len, msg, sizeof(msg))) in test_cipher_with_engine() 5675 && !TEST_true(EVP_EncryptUpdate(ctx, NULL, &outlen, in aes_gcm_encrypt() 5677 || !TEST_true(EVP_EncryptUpdate(ctx, outbuf, &outlen, in aes_gcm_encrypt() 5811 || !TEST_true(EVP_EncryptUpdate(ctx, outbuf, &outlen, in rc4_encrypt() 6034 || !TEST_true(EVP_EncryptUpdate(ctx, NULL, &outlen, in test_evp_cipher_pipeline() [all …]
|
/openssl/doc/life-cycles/ |
H A D | cipher.dot | 36 e_initialised -> e_updated [label="EVP_EncryptUpdate", weight=2]; 37 e_updated -> e_updated [label="EVP_EncryptUpdate"];
|
/openssl/providers/implementations/macs/ |
H A D | gmac_prov.c | 137 if (!EVP_EncryptUpdate(ctx, NULL, &outlen, data, INT_MAX)) in gmac_update() 142 return EVP_EncryptUpdate(ctx, NULL, &outlen, data, datalen); in gmac_update()
|
/openssl/demos/mac/ |
H A D | poly1305.c | 153 if (!EVP_EncryptUpdate(aesctx, composite_key + 16, &aes_len, in main()
|
/openssl/crypto/cms/ |
H A D | cms_pwri.c | 295 if (!EVP_EncryptUpdate(ctx, out, &dummy, out, olen) in kek_wrap_key() 296 || !EVP_EncryptUpdate(ctx, out, &dummy, out, olen)) in kek_wrap_key()
|
/openssl/doc/man3/ |
H A D | RC4_set_key.pod | 23 instead use L<EVP_EncryptInit_ex(3)>, L<EVP_EncryptUpdate(3)> and
|
H A D | EVP_SealInit.pod | 44 as the EVP_EncryptUpdate() and EVP_EncryptFinal() routines, as
|
H A D | EVP_EncryptInit.pod | 15 EVP_EncryptUpdate, 127 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, 398 =item EVP_EncryptUpdate() 430 calls to EVP_EncryptUpdate() should be made. 695 "used" (before any EVP_EncryptUpdate(), EVP_DecryptUpdate() calls for example). 1026 Determines if the input length I<inl> passed to EVP_EncryptUpdate(), 1374 EVP_EncryptInit_ex2(), EVP_EncryptUpdate() and EVP_EncryptFinal_ex() 1469 EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made with the output 1574 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made 1617 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made [all …]
|
H A D | EVP_aes_128_gcm.pod | 158 only be one L<EVP_EncryptUpdate(3)> call per L<EVP_EncryptInit_ex(3)> call (and
|
H A D | BF_encrypt.pod | 37 instead use L<EVP_EncryptInit_ex(3)>, L<EVP_EncryptUpdate(3)> and
|
/openssl/crypto/modes/ |
H A D | siv128.c | 137 return EVP_EncryptUpdate(ctx, out, &out_len, in, out_len); in siv128_do_encrypt()
|
/openssl/providers/implementations/kdfs/ |
H A D | krb5kdf.c | 438 ret = EVP_EncryptUpdate(ctx, cipherblock, &olen, in KRB5KDF()
|
/openssl/ssl/quic/ |
H A D | quic_srtm.c | 272 if (!EVP_EncryptUpdate(srtm->blind_ctx, item->srt_blinded, &outl, in srtm_compute_blinded()
|
/openssl/fuzz/ |
H A D | provider.c | 412 if (!EVP_EncryptUpdate(ctx, outbuf, &outlen, (const unsigned char *) intext, strlen(intext))) { in do_evp_cipher()
|