Searched refs:nonce_size (Results 1 – 5 of 5) sorted by relevance
/kernel/linux/linux-5.10/crypto/ |
D | vmac.c | 71 unsigned int nonce_size; /* nonce bytes filled so far */ member 487 dctx->nonce_size = 0; in vmac_init() 498 if (dctx->nonce_size < VMAC_NONCEBYTES) { in vmac_update() 499 n = min(len, VMAC_NONCEBYTES - dctx->nonce_size); in vmac_update() 500 memcpy(&dctx->nonce.bytes[dctx->nonce_size], p, n); in vmac_update() 501 dctx->nonce_size += n; in vmac_update() 568 if (dctx->nonce_size != VMAC_NONCEBYTES) in vmac_final()
|
/kernel/linux/linux-5.10/drivers/char/tpm/ |
D | tpm2-cmd.c | 221 __be16 nonce_size; member 250 auth_area.nonce_size = 0; in tpm2_pcr_extend()
|
/kernel/linux/linux-5.10/net/tls/ |
D | tls_sw.c | 2313 u16 nonce_size, tag_size, iv_size, rec_seq_size, salt_size; in tls_set_sw_offload() local 2370 nonce_size = TLS_CIPHER_AES_GCM_128_IV_SIZE; in tls_set_sw_offload() 2387 nonce_size = TLS_CIPHER_AES_GCM_256_IV_SIZE; in tls_set_sw_offload() 2404 nonce_size = TLS_CIPHER_AES_CCM_128_IV_SIZE; in tls_set_sw_offload() 2426 if (iv_size > MAX_IV_SIZE || nonce_size > MAX_IV_SIZE || in tls_set_sw_offload() 2433 nonce_size = 0; in tls_set_sw_offload() 2443 prot->prepend_size = TLS_HEADER_SIZE + nonce_size; in tls_set_sw_offload()
|
D | tls_device.c | 1017 u16 nonce_size, tag_size, iv_size, rec_seq_size; in tls_set_device_offload() local 1053 nonce_size = TLS_CIPHER_AES_GCM_128_IV_SIZE; in tls_set_device_offload() 1074 prot->prepend_size = TLS_HEADER_SIZE + nonce_size; in tls_set_device_offload()
|
/kernel/linux/linux-5.10/include/linux/platform_data/ |
D | cros_ec_commands.h | 2153 uint8_t nonce_size; /* Nonce size; may be 0 */ member
|