AES 256GCM for PCIe IDE 96 bit tag #1226
-
Is it possible in its current implementation for the AES GCM 256 to produce a 96 bit MAC and be able to decrypt/verify using a 96 bit MAC also? PCIe IDE implementation is AES GCM 256 and they have chosen a 96 bit MAC instead of the full 128 bits. The receiver of the PCIe packet will only ever receive 96 bits of MAC. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
You will probably have to use OpenSSL for that. I believe it allows using smaller authentication tags for AES-GCM. Good luck. |
Beta Was this translation helpful? Give feedback.
-
You can still use libsodium to produce these tags (just truncate them to 96 bits), but not to verify them. |
Beta Was this translation helpful? Give feedback.
No.