Home
last modified time | relevance | path

Searched refs:EVP_CipherUpdate (Results 1 – 17 of 17) sorted by relevance

/freebsd-12.1/crypto/openssl/crypto/rand/
H A Ddrbg_ctr.c76 if (!EVP_CipherUpdate(ctr->ctx_df, out, &outlen, out, AES_BLOCK_SIZE) in ctr_BCC_block()
206 if (!EVP_CipherUpdate(ctr->ctx, ctr->KX, &outlen, ctr->KX + ctr->keylen, in ctr_df()
210 if (!EVP_CipherUpdate(ctr->ctx, ctr->KX + 16, &outlen, ctr->KX, in ctr_df()
215 if (!EVP_CipherUpdate(ctr->ctx, ctr->KX + 32, &outlen, ctr->KX + 16, in ctr_df()
238 if (!EVP_CipherUpdate(ctr->ctx, ctr->K, &outlen, ctr->V, AES_BLOCK_SIZE) in ctr_update()
245 if (!EVP_CipherUpdate(ctr->ctx, ctr->K+16, &outlen, ctr->V, in ctr_update()
251 if (!EVP_CipherUpdate(ctr->ctx, ctr->V, &outlen, ctr->V, AES_BLOCK_SIZE) in ctr_update()
333 if (!EVP_CipherUpdate(ctr->ctx, ctr->K, &outl, ctr->V, in drbg_ctr_generate()
340 if (!EVP_CipherUpdate(ctr->ctx, out, &outl, ctr->V, AES_BLOCK_SIZE) in drbg_ctr_generate()
/freebsd-12.1/crypto/openssl/ssl/record/
H A Dssl3_record_tls13.c174 && EVP_CipherUpdate(ctx, NULL, &lenu, NULL, in tls13_enc()
176 || EVP_CipherUpdate(ctx, NULL, &lenu, recheader, in tls13_enc()
178 || EVP_CipherUpdate(ctx, rec->data, &lenu, rec->input, in tls13_enc()
/freebsd-12.1/crypto/openssl/crypto/evp/
H A Dbio_enc.c179 if (!EVP_CipherUpdate(ctx->cipher, in enc_read()
197 if (!EVP_CipherUpdate(ctx->cipher, in enc_read()
266 if (!EVP_CipherUpdate(ctx->cipher, in enc_write()
H A Devp_enc.c209 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_CipherUpdate() function
/freebsd-12.1/crypto/openssl/doc/man3/
H A DEVP_EncryptInit.pod15 EVP_CipherUpdate,
75 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
178 EVP_CipherInit_ex(), EVP_CipherUpdate() and EVP_CipherFinal_ex() are
187 for another EVP_CipherInit() / EVP_CipherUpdate() / EVP_CipherFinal()
292 EVP_CipherInit_ex() and EVP_CipherUpdate() return 1 for success and 0 for failure.
344 To specify additional authenticated data (AAD), a call to EVP_CipherUpdate(),
402 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() with the output
597 if (!EVP_CipherUpdate(ctx, outbuf, &outlen, inbuf, inlen)) {
H A DBIO_f_cipher.pod25 EVP_CipherInit(), EVP_CipherUpdate() and EVP_CipherFinal().
H A DEVP_CIPHER_meth_new.pod193 The cipher function is called by EVP_CipherUpdate(),
/freebsd-12.1/crypto/openssl/crypto/cms/
H A Dcms_kari.c206 if (!EVP_CipherUpdate(kari->ctx, NULL, &outlen, in, inlen)) in cms_kek_cipher()
211 if (!EVP_CipherUpdate(kari->ctx, out, &outlen, in, inlen)) in cms_kek_cipher()
/freebsd-12.1/crypto/openssl/crypto/pkcs12/
H A Dp12_decr.c51 if (!EVP_CipherUpdate(ctx, out, &i, in, inlen)) { in PKCS12_pbe_crypt()
/freebsd-12.1/sys/geom/eli/
H A Dg_eli_crypto.c188 if (EVP_CipherUpdate(ctx, data, &outsize, data, datasize) == 0) { in g_eli_crypto_cipher()
/freebsd-12.1/crypto/heimdal/doc/doxyout/hcrypto/
H A Dmanpages64 hcrypto/man/man3/EVP_CipherUpdate.3
/freebsd-12.1/contrib/wpa/src/crypto/
H A Dcrypto_openssl.c241 if (!EVP_CipherUpdate(ctx, skip_buf, &outl, skip_buf, len)) in rc4_skip()
246 if (EVP_CipherUpdate(ctx, data, &outl, data, data_len)) in rc4_skip()
/freebsd-12.1/tools/tools/crypto/
H A Dcryptocheck.c610 if (EVP_CipherUpdate(ctx, (u_char *)output, &outl, in openssl_cipher()
/freebsd-12.1/crypto/openssl/include/openssl/
H A Devp.h613 __owur int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
/freebsd-12.1/secure/lib/libcrypto/
H A DVersion.map1472 EVP_CipherUpdate;
H A DMakefile.man1452 MLINKS+= EVP_EncryptInit.3 EVP_CipherUpdate.3
/freebsd-12.1/crypto/openssl/
H A DCHANGES2227 Also EVP_CipherUpdate() is a synonym for EVP_EncryptUpdate(). All instances
11679 EVP_CipherUpdate() would correctly report zero bytes had been decrypted.