/openssl-master/demos/cipher/ |
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()
|
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()
|
/openssl-master/test/ |
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()
|
A D | evp_libctx_test.c | 369 || !TEST_true(EVP_EncryptUpdate(ctx, out1, &out1_len, in, sizeof(in))) in test_cipher_reinit() 371 || !TEST_int_eq(EVP_EncryptUpdate(ctx, out2, &out2_len, in, sizeof(in)), in test_cipher_reinit() 375 || !TEST_int_eq(EVP_EncryptUpdate(ctx, out3, &out3_len, in, sizeof(in)), in test_cipher_reinit() 455 || !TEST_true(EVP_EncryptUpdate(ctx, out1, &out1_len, in, in_len)) in test_cipher_reinit_partialupdate() 457 || !TEST_true(EVP_EncryptUpdate(ctx, out2, &out2_len, in, in_len))) in test_cipher_reinit_partialupdate() 465 || !TEST_true(EVP_EncryptUpdate(ctx, out3, &out3_len, in, in_len))) in test_cipher_reinit_partialupdate()
|
A D | evp_extra_test.c | 2646 || !TEST_true(EVP_EncryptUpdate(ctx, ciphertext, &ctlen, msg, in test_decrypt_null_chunks() 2649 || !TEST_true(EVP_EncryptUpdate(ctx, ciphertext + ctlen, &tmp, NULL, in test_decrypt_null_chunks() 2652 || !TEST_true(EVP_EncryptUpdate(ctx, ciphertext + ctlen, &tmp, in test_decrypt_null_chunks() 3024 || !TEST_true(EVP_EncryptUpdate(ctx, ciphertext, &len, msg, in test_evp_iv_aes() 3135 || !TEST_true(EVP_EncryptUpdate(ctx, ciphertext, &len, msg, in test_evp_iv_des() 4189 if (!TEST_true(EVP_EncryptUpdate(ctx2, buf, &len, msg, sizeof(msg))) in test_cipher_with_engine()
|
A D | threadstest.c | 369 || !TEST_true(EVP_EncryptUpdate(cipherctx, out, &ciphoutl, in thread_general_worker()
|
A D | destest.c | 741 || !TEST_true(EVP_EncryptUpdate(ctx, c_txt, &clen_upd, in test_des_key_wrap()
|
/openssl-master/doc/life-cycles/ |
A D | cipher.dot | 36 e_initialised -> e_updated [label="EVP_EncryptUpdate", weight=2]; 37 e_updated -> e_updated [label="EVP_EncryptUpdate"];
|
/openssl-master/providers/implementations/macs/ |
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-master/crypto/cms/ |
A D | cms_pwri.c | 274 if (!EVP_EncryptUpdate(ctx, out, &dummy, out, olen) in kek_wrap_key() 275 || !EVP_EncryptUpdate(ctx, out, &dummy, out, olen)) in kek_wrap_key()
|
A D | cms_env.c | 863 || !EVP_EncryptUpdate(ctx, wkey, &wkeylen, ec->key, ec->keylen) in cms_RecipientInfo_kekri_encrypt()
|
/openssl-master/doc/man3/ |
A D | RC4_set_key.pod | 23 instead use L<EVP_EncryptInit_ex(3)>, L<EVP_EncryptUpdate(3)> and
|
A D | EVP_EncryptInit.pod | 13 EVP_EncryptUpdate, 118 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, 362 =item EVP_EncryptUpdate() 386 calls to EVP_EncryptUpdate() should be made. 603 "used" (before any EVP_EncryptUpdate(), EVP_DecryptUpdate() calls for example). 891 Determines if the input length I<inl> passed to EVP_EncryptUpdate(), 1189 EVP_EncryptInit_ex2(), EVP_EncryptUpdate() and EVP_EncryptFinal_ex() 1270 EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made with the output 1362 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made 1394 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made [all …]
|
A D | EVP_SealInit.pod | 44 as the EVP_EncryptUpdate() and EVP_EncryptFinal() routines, as
|
A D | EVP_aes_128_gcm.pod | 164 only be one L<EVP_EncryptUpdate(3)> call per L<EVP_EncryptInit_ex(3)> call (and
|
A D | BF_encrypt.pod | 37 instead use L<EVP_EncryptInit_ex(3)>, L<EVP_EncryptUpdate(3)> and
|
A D | EVP_CIPHER_meth_new.pod | 198 EVP_EncryptUpdate(), EVP_DecryptUpdate(), EVP_CipherFinal(),
|
/openssl-master/doc/man7/ |
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>
|
A D | provider-cipher.pod | 62 L<EVP_EncryptUpdate(3)> and L<EVP_EncryptFinal(3)> (as well as the decrypt 153 L<EVP_EncryptUpdate(3)> and L<EVP_DecryptUpdate(3)>.
|
/openssl-master/providers/implementations/kdfs/ |
A D | krb5kdf.c | 408 ret = EVP_EncryptUpdate(ctx, cipherblock, &olen, in KRB5KDF()
|
/openssl-master/crypto/modes/ |
A D | siv128.c | 137 return EVP_EncryptUpdate(ctx, out, &out_len, in, out_len); in siv128_do_encrypt()
|
/openssl-master/crypto/evp/ |
A D | evp_enc.c | 405 return EVP_EncryptUpdate(ctx, out, outl, in, inl); in EVP_CipherUpdate() 594 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_EncryptUpdate() function
|
/openssl-master/apps/ |
A D | speed.c | 739 rc = EVP_EncryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop() 778 (void)EVP_EncryptUpdate(ctx, NULL, &outl, NULL, lengths[testnum]); in EVP_Update_loop_ccm() 780 (void)EVP_EncryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop_ccm() 816 (void)EVP_EncryptUpdate(ctx, NULL, &outl, aad, sizeof(aad)); in EVP_Update_loop_aead() 817 (void)EVP_EncryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop_aead()
|
/openssl-master/crypto/pem/ |
A D | pem_lib.c | 392 || !EVP_EncryptUpdate(ctx, data, &j, data, i) in PEM_ASN1_write_bio()
|
A D | pvkfmt.c | 1084 if (!EVP_EncryptUpdate(cctx, p, &enctmplen, p, pklen - 8)) in i2b_PVK()
|