mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-29 18:27:29 +02:00
fix for setting AES-CCM decrypt nonce with crypto callback
This commit is contained in:
@ -648,8 +648,8 @@ int wc_CryptoCb_AesCcmDecrypt(Aes* aes, byte* out,
|
||||
cryptoInfo.cipher.aesccm_dec.out = out;
|
||||
cryptoInfo.cipher.aesccm_dec.in = in;
|
||||
cryptoInfo.cipher.aesccm_dec.sz = sz;
|
||||
cryptoInfo.cipher.aesccm_enc.nonce = nonce;
|
||||
cryptoInfo.cipher.aesccm_enc.nonceSz = nonceSz;
|
||||
cryptoInfo.cipher.aesccm_dec.nonce = nonce;
|
||||
cryptoInfo.cipher.aesccm_dec.nonceSz = nonceSz;
|
||||
cryptoInfo.cipher.aesccm_dec.authTag = authTag;
|
||||
cryptoInfo.cipher.aesccm_dec.authTagSz = authTagSz;
|
||||
cryptoInfo.cipher.aesccm_dec.authIn = authIn;
|
||||
|
Reference in New Issue
Block a user