On Thu Apr 3 09:06:42 2025 +0000, Dmitry Timoshkov wrote:
aes_unwrap() should be able to decrypt all possible AES key lengths (128, 192, 256 bits), to do so it needs to know the wrapped blob length. Your implementation uses the decryption key length instead, which is incorrect.
Yes I'm assuming that they have the same length, the only one currently supported. I'll add fixme for unsupported block lengths.