]> 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>
Sat, 24 Sep 2022 23:37:45 +0000 (08:37 +0900)
commitbb640c26d3366983443865c7000f003bcfcfa8ff
treede2603d1f7c0d6674dbd31a5dc7607872453a243
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]