Home
last modified time | relevance | path

Searched refs:fromc (Results 1 – 4 of 4) sorted by relevance

/freebsd-13-stable/sys/crypto/armv8/
HDarmv8_crypto_wrap.c102 struct crypto_buffer_cursor *fromc, struct crypto_buffer_cursor *toc, in armv8_aes_encrypt_cbc() argument
114 from = crypto_cursor_segment(fromc, &fromseglen); in armv8_aes_encrypt_cbc()
119 crypto_cursor_copydata(fromc, AES_BLOCK_LEN, block); in armv8_aes_encrypt_cbc()
140 crypto_cursor_advance(fromc, seglen); in armv8_aes_encrypt_cbc()
150 struct crypto_buffer_cursor *fromc, struct crypto_buffer_cursor *toc, in armv8_aes_decrypt_cbc() argument
162 from = crypto_cursor_segment(fromc, &fromseglen); in armv8_aes_decrypt_cbc()
167 crypto_cursor_copydata(fromc, AES_BLOCK_LEN, block); in armv8_aes_decrypt_cbc()
186 crypto_cursor_advance(fromc, oseglen - seglen); in armv8_aes_decrypt_cbc()
238 struct crypto_buffer_cursor *fromc, struct crypto_buffer_cursor *toc, in armv8_aes_crypt_xts() argument
265 from = crypto_cursor_segment(fromc, &fromseglen); in armv8_aes_crypt_xts()
[all …]
HDarmv8_crypto.c379 struct crypto_buffer_cursor fromc, toc; in armv8_crypto_cipher_process() local
407 crypto_cursor_init(&fromc, &crp->crp_buf); in armv8_crypto_cipher_process()
408 crypto_cursor_advance(&fromc, crp->crp_payload_start); in armv8_crypto_cipher_process()
413 crypto_cursor_copy(&fromc, &toc); in armv8_crypto_cipher_process()
438 crp->crp_payload_length, &fromc, &toc, iv); in armv8_crypto_cipher_process()
441 crp->crp_payload_length, &fromc, &toc, iv); in armv8_crypto_cipher_process()
447 &fromc, &toc, iv); in armv8_crypto_cipher_process()
451 &fromc, &toc, iv); in armv8_crypto_cipher_process()
457 crp->crp_payload_length, &fromc, &toc, in armv8_crypto_cipher_process()
465 crp->crp_payload_length, &fromc, &toc, in armv8_crypto_cipher_process()
HDarmv8_crypto.h65 struct crypto_buffer_cursor *fromc, struct crypto_buffer_cursor *toc,
68 struct crypto_buffer_cursor *fromc, struct crypto_buffer_cursor *toc,
/freebsd-13-stable/sys/opencrypto/
HDcryptodev.h748 crypto_cursor_copy(const struct crypto_buffer_cursor *fromc, in crypto_cursor_copy() argument
751 memcpy(toc, fromc, sizeof(*toc)); in crypto_cursor_copy()