| /freebsd-14.2/crypto/openssl/crypto/evp/ |
| H A D | p_seal.c | 83 i = EVP_EncryptFinal_ex(ctx, out, outl); in EVP_SealFinal()
|
| H A D | evp_enc.c | 468 return EVP_EncryptFinal_ex(ctx, out, outl); in EVP_CipherFinal_ex() 707 ret = EVP_EncryptFinal_ex(ctx, out, outl); in EVP_EncryptFinal() 711 int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_EncryptFinal_ex() function
|
| /freebsd-14.2/crypto/openssl/demos/cipher/ |
| H A D | ariacbc.c | 89 if (!EVP_EncryptFinal_ex(ctx, outbuf + outlen, &tmplen)) in aria_cbc_encrypt()
|
| H A D | aeskeywrap.c | 90 if (!EVP_EncryptFinal_ex(ctx, outbuf + outlen, &tmplen)) in aes_wrap_encrypt()
|
| H A D | aesgcm.c | 122 if (!EVP_EncryptFinal_ex(ctx, outbuf, &tmplen)) in aes_gcm_encrypt()
|
| H A D | aesccm.c | 132 if (!EVP_EncryptFinal_ex(ctx, NULL, &tmplen)) in aes_ccm_encrypt()
|
| /freebsd-14.2/crypto/openssl/test/ |
| H A D | aesgcmtest.c | 56 && TEST_true(EVP_EncryptFinal_ex(ctx, outbuf, &outlen) > 0) in do_encrypt()
|
| H A D | evp_extra_test.c | 3415 || !TEST_true(EVP_EncryptFinal_ex(ctx, ciphertext, &len))) in test_evp_iv_aes() 3526 || !TEST_true(EVP_EncryptFinal_ex(ctx, ciphertext, &len))) in test_evp_iv_des() 4984 || !TEST_true(EVP_EncryptFinal_ex(ctx2, buf + len, &len))) in test_cipher_with_engine() 5137 || !TEST_true(EVP_EncryptFinal_ex(ctx, outbuf, &tmplen))) in aes_gcm_encrypt() 5271 || !TEST_true(EVP_EncryptFinal_ex(ctx, outbuf, &tmplen))) in rc4_encrypt()
|
| /freebsd-14.2/crypto/openssl/doc/man3/ |
| H A D | RC4_set_key.pod | 24 L<EVP_EncryptFinal_ex(3)> or the equivalently named decrypt functions.
|
| H A D | BF_encrypt.pod | 38 L<EVP_EncryptFinal_ex(3)> or the equivalently named decrypt functions.
|
| H A D | EVP_EncryptInit.pod | 14 EVP_EncryptFinal_ex, 120 int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl); 385 If padding is enabled (the default) then EVP_EncryptFinal_ex() encrypts 394 If padding is disabled then EVP_EncryptFinal_ex() will not encrypt any more 432 Identical to EVP_EncryptFinal_ex(), EVP_DecryptFinal_ex() and 1195 EVP_EncryptInit_ex2(), EVP_EncryptUpdate() and EVP_EncryptFinal_ex() 1489 use EVP_EncryptInit_ex2(), EVP_EncryptFinal_ex(), EVP_DecryptInit_ex2(), 1556 if (!EVP_EncryptFinal_ex(ctx, outbuf + outlen, &tmplen)) {
|
| H A D | EVP_CIPHER_meth_new.pod | 200 EVP_EncryptFinal(), EVP_EncryptFinal_ex(), EVP_DecryptFinal() and
|
| H A D | DES_random_key.pod | 103 L<EVP_EncryptFinal_ex(3)> or the equivalently named decrypt functions.
|
| /freebsd-14.2/crypto/openssl/providers/implementations/macs/ |
| H A D | gmac_prov.c | 155 if (!EVP_EncryptFinal_ex(macctx->ctx, out, &hlen)) in gmac_final()
|
| /freebsd-14.2/crypto/openssl/providers/implementations/kdfs/ |
| H A D | krb5kdf.c | 416 ret = EVP_EncryptFinal_ex(ctx, cipherblock, &olen); in KRB5KDF()
|
| /freebsd-14.2/tools/tools/crypto/ |
| H A D | cryptocheck.c | 1091 if (EVP_EncryptFinal_ex(ctx, NULL, &outl) != 1) in openssl_gmac() 1287 if (EVP_EncryptFinal_ex(ctx, (u_char *)output + outl, &outl) != 1) in openssl_aead_encrypt() 1398 if (EVP_EncryptFinal_ex(ctx, (u_char *)output + outl, &outl) != 1) in openssl_ccm_encrypt()
|
| /freebsd-14.2/crypto/openssl/crypto/pem/ |
| H A D | pem_lib.c | 393 || !EVP_EncryptFinal_ex(ctx, &(data[j]), &i)) in PEM_ASN1_write_bio()
|
| H A D | pvkfmt.c | 1079 if (!EVP_EncryptFinal_ex(cctx, p + enctmplen, &enctmplen)) in i2b_PVK()
|
| /freebsd-14.2/contrib/wpa/src/crypto/ |
| H A D | crypto_openssl.c | 351 EVP_EncryptFinal_ex(ctx, &cypher[plen], &plen) == 1) in des_encrypt() 506 if (EVP_EncryptFinal_ex(c, buf, &len) != 1) { in aes_encrypt_deinit() 618 EVP_EncryptFinal_ex(ctx, buf, &len) == 1) in aes_wrap() 704 EVP_EncryptFinal_ex(ctx, buf, &len) == 1 && len == 0) in aes_128_cbc_encrypt()
|
| /freebsd-14.2/crypto/openssl/crypto/cms/ |
| H A D | cms_env.c | 874 || !EVP_EncryptFinal_ex(ctx, wkey + wkeylen, &outlen)) { in cms_RecipientInfo_kekri_encrypt()
|
| /freebsd-14.2/crypto/openssl/apps/ |
| H A D | speed.c | 760 EVP_EncryptFinal_ex(ctx, buf, &outl); in EVP_Update_loop() 826 if (EVP_EncryptFinal_ex(ctx, buf, &outl)) in EVP_Update_loop_aead_enc() 2448 if (!EVP_EncryptFinal_ex(loopargs[k].ctx, in speed_main()
|
| /freebsd-14.2/crypto/openssl/include/openssl/ |
| H A D | evp.h | 763 /*__owur*/ int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out,
|
| /freebsd-14.2/secure/lib/libcrypto/ |
| H A D | Version.map | 1502 EVP_EncryptFinal_ex;
|
| /freebsd-14.2/tests/sys/kern/ |
| H A D | ktls_test.c | 461 if (EVP_EncryptFinal_ex(ctx, (u_char *)output + outl, &outl) != 1) { in aead_encrypt()
|
| /freebsd-14.2/crypto/openssl/doc/man7/ |
| H A D | migration_guide.pod | 1079 L<EVP_EncryptUpdate(3)>, and L<EVP_EncryptFinal_ex(3)> or
|