mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
cryptosoft: Support per-op keys for AES-GCM and AES-CCM.
Reviewed by: cem Sponsored by: Netflix Differential Revision: https://reviews.freebsd.org/D28752
This commit is contained in:
parent
4dd6800e22
commit
a10020cfe2
1 changed files with 6 additions and 0 deletions
|
|
@ -537,6 +537,9 @@ swcr_gcm(struct swcr_session *ses, struct cryptop *crp)
|
|||
}
|
||||
}
|
||||
|
||||
if (crp->crp_cipher_key != NULL)
|
||||
exf->setkey(swe->sw_kschedule, crp->crp_cipher_key,
|
||||
crypto_get_params(crp->crp_session)->csp_cipher_klen);
|
||||
exf->reinit(swe->sw_kschedule, iv);
|
||||
|
||||
/* Do encryption with MAC */
|
||||
|
|
@ -755,6 +758,9 @@ swcr_ccm(struct swcr_session *ses, struct cryptop *crp)
|
|||
if (error)
|
||||
return (error);
|
||||
|
||||
if (crp->crp_cipher_key != NULL)
|
||||
exf->setkey(swe->sw_kschedule, crp->crp_cipher_key,
|
||||
crypto_get_params(crp->crp_session)->csp_cipher_klen);
|
||||
exf->reinit(swe->sw_kschedule, iv);
|
||||
|
||||
/* Do encryption/decryption with MAC */
|
||||
|
|
|
|||
Loading…
Reference in a new issue