Home
last modified time | relevance | path

Searched refs:EVP_EncryptUpdate (Results 1 – 25 of 43) sorted by relevance

12

/openssl/demos/cipher/
H A Daesccm.c116 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 Daesgcm.c110 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 Daeskeywrap.c86 if (!EVP_EncryptUpdate(ctx, outbuf, &outlen, wrap_pt, sizeof(wrap_pt))) in aes_wrap_encrypt()
H A Dariacbc.c83 if (!EVP_EncryptUpdate(ctx, outbuf, &outlen, cbc_pt, sizeof(cbc_pt))) in aria_cbc_encrypt()
/openssl/providers/implementations/ciphers/
H A Dcipher_aes_gcm_siv_hw.c71 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 DEVP_CIPHER-SM4.pod43 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 DEVP_CIPHER-AES.pod69 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 Dlife_cycle-cipher.pod85 | EVP_DecryptUpdate | EVP_CipherUpdate EVP_EncryptUpdate |
100 v v v EVP_EncryptUpdate
138EVP_EncryptUpdate
238 <tr><th style="border:1px solid" align="left">EVP_EncryptUpdate</th>
H A Dprovider-cipher.pod79 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 Daesgcmtest.c52 && 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 Devp_libctx_test.c403 || !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 Devp_extra_test.c3453 || !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 Dcipher.dot36 e_initialised -> e_updated [label="EVP_EncryptUpdate", weight=2];
37 e_updated -> e_updated [label="EVP_EncryptUpdate"];
/openssl/providers/implementations/macs/
H A Dgmac_prov.c137 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 Dpoly1305.c153 if (!EVP_EncryptUpdate(aesctx, composite_key + 16, &aes_len, in main()
/openssl/crypto/cms/
H A Dcms_pwri.c295 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 DRC4_set_key.pod23 instead use L<EVP_EncryptInit_ex(3)>, L<EVP_EncryptUpdate(3)> and
H A DEVP_SealInit.pod44 as the EVP_EncryptUpdate() and EVP_EncryptFinal() routines, as
H A DEVP_EncryptInit.pod15 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 DEVP_aes_128_gcm.pod158 only be one L<EVP_EncryptUpdate(3)> call per L<EVP_EncryptInit_ex(3)> call (and
H A DBF_encrypt.pod37 instead use L<EVP_EncryptInit_ex(3)>, L<EVP_EncryptUpdate(3)> and
/openssl/crypto/modes/
H A Dsiv128.c137 return EVP_EncryptUpdate(ctx, out, &out_len, in, out_len); in siv128_do_encrypt()
/openssl/providers/implementations/kdfs/
H A Dkrb5kdf.c438 ret = EVP_EncryptUpdate(ctx, cipherblock, &olen, in KRB5KDF()
/openssl/ssl/quic/
H A Dquic_srtm.c272 if (!EVP_EncryptUpdate(srtm->blind_ctx, item->srt_blinded, &outl, in srtm_compute_blinded()
/openssl/fuzz/
H A Dprovider.c412 if (!EVP_EncryptUpdate(ctx, outbuf, &outlen, (const unsigned char *) intext, strlen(intext))) { in do_evp_cipher()

Completed in 69 milliseconds

12