Searched refs:fromc (Results 1 – 4 of 4) sorted by relevance
| /freebsd-13-stable/sys/crypto/armv8/ |
| HD | armv8_crypto_wrap.c | 102 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 …]
|
| HD | armv8_crypto.c | 379 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()
|
| HD | armv8_crypto.h | 65 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/ |
| HD | cryptodev.h | 748 crypto_cursor_copy(const struct crypto_buffer_cursor *fromc, in crypto_cursor_copy() argument 751 memcpy(toc, fromc, sizeof(*toc)); in crypto_cursor_copy()
|