]> git.ipfire.org Git - thirdparty/nettle.git/commit
Implement AES-GCM-SIV
authorDaiki Ueno <dueno@redhat.com>
Tue, 16 Aug 2022 07:37:51 +0000 (16:37 +0900)
committerDaiki Ueno <dueno@redhat.com>
Mon, 26 Sep 2022 21:46:41 +0000 (06:46 +0900)
commitf5b64ecc8decb86f2716b050a69828e8b9c71180
tree7088b646b95fea94cc4e29707bb6004ab3f93090
parentff660604eb66c5ff2b2bb508ba7f41b9c13c8087
Implement AES-GCM-SIV

This implements AES-GCM-SIV, described in RFC8452, on top of the
existing AES-GCM primitives.  In particular, its hash algorithm
POLYVAL is implemented using the GHASH with additional byte order
conversion according to RFC8452 Appendix A.

Signed-off-by: Daiki Ueno <dueno@redhat.com>
15 files changed:
Makefile.in
block-internal.h
bswap-internal.h
ghash-internal.h
nettle-internal.h
nettle.texinfo
siv-gcm-aes128.c [new file with mode: 0644]
siv-gcm-aes256.c [new file with mode: 0644]
siv-gcm.c [new file with mode: 0644]
siv-gcm.h [new file with mode: 0644]
siv-ghash-set-key.c [new file with mode: 0644]
siv-ghash-update.c [new file with mode: 0644]
testsuite/.gitignore
testsuite/Makefile.in
testsuite/siv-gcm-test.c [new file with mode: 0644]