Home
last modified time | relevance | path

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

12

/freebsd-14.2/crypto/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 Dariacbc.c85 if (!EVP_EncryptUpdate(ctx, outbuf, &outlen, cbc_pt, sizeof(cbc_pt))) in aria_cbc_encrypt()
H A Daeskeywrap.c86 if (!EVP_EncryptUpdate(ctx, outbuf, &outlen, wrap_pt, sizeof(wrap_pt))) in aes_wrap_encrypt()
/freebsd-14.2/crypto/openssl/doc/man7/
H A DEVP_CIPHER-AES.pod67 means to obtain correct results there can be only one L<EVP_EncryptUpdate(3)>
71 L<EVP_EncryptUpdate(3)> or L<EVP_DecryptUpdate(3)> call requires each input
72 to be a multiple of the blocksize. Only the final EVP_EncryptUpdate() or
H A Dprovider-cipher.pod62 L<EVP_EncryptUpdate(3)> and L<EVP_EncryptFinal(3)> (as well as the decrypt
153 locations, the requirements of L<EVP_EncryptUpdate(3)> and L<EVP_DecryptUpdate(3)>
155 Similarly, the requirements of L<EVP_EncryptUpdate(3)> and L<EVP_DecryptUpdate(3)>
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>
/freebsd-14.2/crypto/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.c368 || !TEST_true(EVP_EncryptUpdate(ctx, out1, &out1_len, in, sizeof(in))) in test_cipher_reinit()
370 || !TEST_int_eq(EVP_EncryptUpdate(ctx, out2, &out2_len, in, sizeof(in)), in test_cipher_reinit()
374 || !TEST_int_eq(EVP_EncryptUpdate(ctx, out3, &out3_len, in, sizeof(in)), in test_cipher_reinit()
454 || !TEST_true(EVP_EncryptUpdate(ctx, out1, &out1_len, in, in_len)) in test_cipher_reinit_partialupdate()
456 || !TEST_true(EVP_EncryptUpdate(ctx, out2, &out2_len, in, in_len))) in test_cipher_reinit_partialupdate()
464 || !TEST_true(EVP_EncryptUpdate(ctx, out3, &out3_len, in, in_len))) in test_cipher_reinit_partialupdate()
H A Devp_extra_test.c3033 || !TEST_true(EVP_EncryptUpdate(ctx, ciphertext, &ctlen, msg, in test_decrypt_null_chunks()
3036 || !TEST_true(EVP_EncryptUpdate(ctx, ciphertext + ctlen, &tmp, NULL, in test_decrypt_null_chunks()
3039 || !TEST_true(EVP_EncryptUpdate(ctx, ciphertext + ctlen, &tmp, in test_decrypt_null_chunks()
3411 || !TEST_true(EVP_EncryptUpdate(ctx, ciphertext, &len, msg, in test_evp_iv_aes()
3522 || !TEST_true(EVP_EncryptUpdate(ctx, ciphertext, &len, msg, in test_evp_iv_des()
4983 if (!TEST_true(EVP_EncryptUpdate(ctx2, buf, &len, msg, sizeof(msg))) in test_cipher_with_engine()
5133 && !TEST_true(EVP_EncryptUpdate(ctx, NULL, &outlen, in aes_gcm_encrypt()
5135 || !TEST_true(EVP_EncryptUpdate(ctx, outbuf, &outlen, in aes_gcm_encrypt()
5269 || !TEST_true(EVP_EncryptUpdate(ctx, outbuf, &outlen, in rc4_encrypt()
/freebsd-14.2/crypto/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"];
/freebsd-14.2/crypto/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()
/freebsd-14.2/crypto/openssl/demos/mac/
H A Dpoly1305.c153 if (!EVP_EncryptUpdate(aesctx, composite_key + 16, &aes_len, in main()
/freebsd-14.2/crypto/openssl/crypto/cms/
H A Dcms_pwri.c278 if (!EVP_EncryptUpdate(ctx, out, &dummy, out, olen) in kek_wrap_key()
279 || !EVP_EncryptUpdate(ctx, out, &dummy, out, olen)) in kek_wrap_key()
/freebsd-14.2/crypto/openssl/doc/man3/
H A DRC4_set_key.pod23 instead use L<EVP_EncryptInit_ex(3)>, L<EVP_EncryptUpdate(3)> and
H A DEVP_EncryptInit.pod13 EVP_EncryptUpdate,
118 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
360 =item EVP_EncryptUpdate()
392 calls to EVP_EncryptUpdate() should be made.
609 "used" (before any EVP_EncryptUpdate(), EVP_DecryptUpdate() calls for example).
897 Determines if the input length I<inl> passed to EVP_EncryptUpdate(),
1195 EVP_EncryptInit_ex2(), EVP_EncryptUpdate() and EVP_EncryptFinal_ex()
1278 EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made with the output
1381 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made
1424 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made
[all …]
H A DEVP_SealInit.pod44 as the EVP_EncryptUpdate() and EVP_EncryptFinal() routines, as
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
/freebsd-14.2/tools/tools/crypto/
H A Dcryptocheck.c1087 if (EVP_EncryptUpdate(ctx, NULL, &outl, (const u_char *)input, in openssl_gmac()
1276 if (EVP_EncryptUpdate(ctx, NULL, &outl, (const u_char *)aad, in openssl_aead_encrypt()
1282 if (EVP_EncryptUpdate(ctx, (u_char *)output, &outl, in openssl_aead_encrypt()
1378 if (EVP_EncryptUpdate(ctx, NULL, &outl, NULL, size) != 1) in openssl_ccm_encrypt()
1385 if (EVP_EncryptUpdate(ctx, NULL, &outl, (const u_char *)aad, in openssl_ccm_encrypt()
1392 if (EVP_EncryptUpdate(ctx, (u_char *)output, &outl, in openssl_ccm_encrypt()
/freebsd-14.2/crypto/openssl/providers/implementations/kdfs/
H A Dkrb5kdf.c411 ret = EVP_EncryptUpdate(ctx, cipherblock, &olen, in KRB5KDF()
/freebsd-14.2/crypto/openssl/crypto/modes/
H A Dsiv128.c137 return EVP_EncryptUpdate(ctx, out, &out_len, in, out_len); in siv128_do_encrypt()
/freebsd-14.2/contrib/bsnmp/lib/
H A Dsnmpcrypto.c197 if (EVP_EncryptUpdate(ctx, pdu->scoped_ptr, &olen, pdu->scoped_ptr, in snmp_pdu_encrypt()
/freebsd-14.2/crypto/openssl/apps/
H A Dspeed.c750 rc = EVP_EncryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop()
807 if (!EVP_EncryptUpdate(ctx, NULL, &outl, in EVP_Update_loop_aead_enc()
815 if (!EVP_EncryptUpdate(ctx, NULL, &outl, aad, sizeof(aad))) { in EVP_Update_loop_aead_enc()
821 if (!EVP_EncryptUpdate(ctx, buf, &outl, buf, lengths[testnum])) { in EVP_Update_loop_aead_enc()
2421 if (!EVP_EncryptUpdate(loopargs[k].ctx, NULL, in speed_main()
2431 if (!EVP_EncryptUpdate(loopargs[k].ctx, NULL, in speed_main()
2439 if (!EVP_EncryptUpdate(loopargs[k].ctx, loopargs[k].buf, in speed_main()
/freebsd-14.2/contrib/libarchive/libarchive/
H A Darchive_cryptor.c416 r = EVP_EncryptUpdate(ctx->ctx, ctx->encr_buf, &outl, ctx->nonce, in aes_ctr_encrypt_counter()

12