| /freebsd/crypto/openssl/demos/cipher/ |
| H A D | aesccm.c | 199 if (!EVP_DecryptUpdate(ctx, NULL, &outlen, NULL, sizeof(ccm_ct))) in aes_ccm_decrypt() 203 if (!EVP_DecryptUpdate(ctx, NULL, &outlen, ccm_adata, sizeof(ccm_adata))) in aes_ccm_decrypt() 207 rv = EVP_DecryptUpdate(ctx, outbuf, &outlen, ccm_ct, sizeof(ccm_ct)); in aes_ccm_decrypt()
|
| H A D | aesgcm.c | 182 if (!EVP_DecryptUpdate(ctx, NULL, &outlen, gcm_aad, sizeof(gcm_aad))) in aes_gcm_decrypt() 186 if (!EVP_DecryptUpdate(ctx, outbuf, &outlen, gcm_ct, sizeof(gcm_ct))) in aes_gcm_decrypt()
|
| H A D | aeskeywrap.c | 145 if (!EVP_DecryptUpdate(ctx, outbuf, &outlen, wrap_ct, sizeof(wrap_ct))) in aes_wrap_decrypt()
|
| H A D | ariacbc.c | 138 if (!EVP_DecryptUpdate(ctx, outbuf, &outlen, cbc_ct, sizeof(cbc_ct))) in aria_cbc_decrypt()
|
| /freebsd/crypto/openssl/crypto/cms/ |
| H A D | cms_pwri.c | 221 if (!EVP_DecryptUpdate(ctx, tmp + inlen - 2 * blocklen, &outl, in kek_unwrap_key() 228 || !EVP_DecryptUpdate(ctx, tmp, &outl, in kek_unwrap_key() 231 || !EVP_DecryptUpdate(ctx, tmp, &outl, in, inlen - blocklen) in kek_unwrap_key() 236 || !EVP_DecryptUpdate(ctx, tmp, &outl, tmp, inlen)) in kek_unwrap_key()
|
| /freebsd/crypto/openssl/doc/man7/ |
| H A D | EVP_CIPHER-AES.pod | 70 or L<EVP_DecryptUpdate(3)> call after the initialization of the context. 77 L<EVP_EncryptUpdate(3)> or L<EVP_DecryptUpdate(3)> call requires each input 79 EVP_DecryptUpdate() call can optionally have an input that is not a multiple
|
| H A D | EVP_CIPHER-SM4.pod | 50 L<EVP_EncryptUpdate(3)> or L<EVP_DecryptUpdate(3)> call requires each input 52 EVP_DecryptUpdate() call can optionally have an input that is not a multiple
|
| H A D | life_cycle-cipher.pod | 85 | EVP_DecryptUpdate | EVP_CipherUpdate EVP_EncryptUpdate | 94 …| updated | EVP_DecryptUpdate | | | updated |-----… 136 …EVP_DecryptUpdate updated up… 227 <tr><th style="border:1px solid" align="left">EVP_DecryptUpdate</th>
|
| H A D | provider-cipher.pod | 189 locations, the requirements of L<EVP_EncryptUpdate(3)> and L<EVP_DecryptUpdate(3)> 191 Similarly, the requirements of L<EVP_EncryptUpdate(3)> and L<EVP_DecryptUpdate(3)>
|
| /freebsd/crypto/openssl/test/ |
| H A D | aesgcmtest.c | 86 && TEST_true(EVP_DecryptUpdate(ctx, NULL, &outlen, gcm_aad, in do_decrypt() 89 && TEST_true(EVP_DecryptUpdate(ctx, pt, &ptlen, ct, in do_decrypt()
|
| H A D | evp_extra_test.c | 4494 || !TEST_true(EVP_DecryptUpdate(ctx, plaintext, &ptlen, ciphertext, in test_decrypt_null_chunks() 4500 || !TEST_true(EVP_DecryptUpdate(ctx, plaintext + ptlen, &tmp, NULL, in test_decrypt_null_chunks() 4503 || !TEST_true(EVP_DecryptUpdate(ctx, plaintext + ptlen, &tmp, in test_decrypt_null_chunks() 6980 && !TEST_true(EVP_DecryptUpdate(ctx, NULL, &outlen, in aes_gcm_decrypt() 6982 || !TEST_true(EVP_DecryptUpdate(ctx, outbuf, &outlen, in aes_gcm_decrypt() 7105 || !TEST_true(EVP_DecryptUpdate(ctx, outbuf, &outlen, in rc4_decrypt() 7183 || !TEST_true(EVP_DecryptUpdate(ctx, NULL, &outl, aad, sizeof(aad))) in test_aes_gcm_siv_empty_data() 7184 … || !TEST_true(EVP_DecryptUpdate(ctx, out, &outl, aad, 0)) /* force aes_gcm_siv_decrypt(len=0) */ in test_aes_gcm_siv_empty_data() 7194 … || !TEST_true(EVP_DecryptUpdate(ctx, NULL, &outl, aad, sizeof(aad))) /* AAD only, out==NULL */ in test_aes_gcm_siv_empty_data() 7213 || !TEST_true(EVP_DecryptUpdate(ctx, NULL, &outl, aad, sizeof(aad))) in test_aes_gcm_siv_empty_data() [all …]
|
| H A D | destest.c | 767 || !TEST_true(EVP_DecryptUpdate(ctx, p_txt, &plen_upd, in test_des_key_wrap()
|
| /freebsd/crypto/openssl/doc/life-cycles/ |
| H A D | cipher.dot | 30 d_initialised -> d_updated [label="EVP_DecryptUpdate", weight=2]; 31 d_updated -> d_updated [label="EVP_DecryptUpdate"];
|
| /freebsd/crypto/krb5/src/lib/crypto/openssl/enc_provider/ |
| H A D | des3.c | 158 ret = EVP_DecryptUpdate(ctx, oblock, &olen, in k5_des3_decrypt()
|
| H A D | aes.c | 126 ret = EVP_DecryptUpdate(ctx, oblock, &olen, iblock, BLOCK_SIZE); in cbc_decr()
|
| H A D | camellia.c | 125 ret = EVP_DecryptUpdate(ctx, oblock, &olen, iblock, BLOCK_SIZE); in cbc_decr()
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | EVP_OpenInit.pod | 29 as the EVP_DecryptUpdate() and EVP_DecryptFinal() routines, as
|
| H A D | EVP_EncryptInit.pod | 19 EVP_DecryptUpdate, 135 int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, 437 =item EVP_DecryptInit_ex2(), EVP_DecryptInit_ex(), EVP_DecryptUpdate() 705 "used" (before any EVP_EncryptUpdate(), EVP_DecryptUpdate() calls for example). 1037 EVP_DecryptUpdate() and EVP_CipherUpdate() is the number of bits or number of bytes. 1387 EVP_DecryptInit_ex2() and EVP_DecryptUpdate() return 1 for success and 0 for failure. 1482 EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made with the output 1555 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() with the output 1592 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made 1629 made B<before> any data is processed (e.g. before any EVP_DecryptUpdate() [all …]
|
| H A D | EVP_CIPHER_meth_new.pod | 199 EVP_EncryptUpdate(), EVP_DecryptUpdate(), EVP_CipherFinal(),
|
| /freebsd/sbin/decryptcore/ |
| H A D | decryptcore.c | 278 if (EVP_DecryptUpdate(ctx, buf, &olen, buf, in decrypt()
|
| /freebsd/contrib/bsnmp/lib/ |
| H A D | snmpcrypto.c | 231 if (EVP_DecryptUpdate(ctx, pdu->scoped_ptr, &olen, pdu->scoped_ptr, in snmp_pdu_decrypt()
|
| /freebsd/crypto/openssl/crypto/pem/ |
| H A D | pvkfmt.c | 909 if (!EVP_DecryptUpdate(cctx, q, &enctmplen, p, inlen)) in do_PVK_body_key() 919 if (!EVP_DecryptUpdate(cctx, q, &enctmplen, p, inlen)) in do_PVK_body_key()
|
| /freebsd/contrib/tcpdump/ |
| H A D | print-esp.c | 250 if (!EVP_DecryptUpdate(ctx, pt, &len, ct, ctlen)) { in do_decrypt()
|
| /freebsd/crypto/openssl/crypto/hpke/ |
| H A D | hpke.c | 177 if (EVP_DecryptUpdate(ctx, NULL, &len, aad, aadlen) != 1) { in hpke_aead_dec() 182 if (EVP_DecryptUpdate(ctx, pt, &len, ct, ctlen - taglen) != 1) { in hpke_aead_dec()
|
| /freebsd/contrib/wpa/src/crypto/ |
| H A D | crypto_openssl.c | 612 if (EVP_DecryptUpdate(c, plain, &plen, crypt, 16) != 1) { in aes_decrypt() 723 EVP_DecryptUpdate(ctx, plain, &len, cipher, (n + 1) * 8) == 1 && in aes_unwrap() 792 EVP_DecryptUpdate(ctx, data, &plen, data, data_len) == 1 && in aes_128_cbc_decrypt() 1016 if (!EVP_DecryptUpdate(ctx->dec, plain, &outl, crypt, len)) in crypto_cipher_decrypt() 5430 EVP_DecryptUpdate(cctx, NULL, &len, aad, aad_len) != 1) { in hpke_aead_open() 5438 if (EVP_DecryptUpdate(cctx, wpabuf_put(pt, 0), &len, ct, ct_len) != 1) { in hpke_aead_open()
|