diff options
Diffstat (limited to 'internal/stupidgcm/doc.go')
-rw-r--r-- | internal/stupidgcm/doc.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/internal/stupidgcm/doc.go b/internal/stupidgcm/doc.go index dce82ae..f5d4177 100644 --- a/internal/stupidgcm/doc.go +++ b/internal/stupidgcm/doc.go @@ -1,5 +1,5 @@ -// Package stupidgcm wraps OpenSSL to provide a cipher.AEAD interface for -// authenticated encryption algorithms. +// Package stupidgcm wraps OpenSSL and libaegis to provide a cipher.AEAD +// interface for authenticated encryption algorithms. // // The supported algorithms are: // @@ -9,6 +9,8 @@ // // (3) XChaCha20-Poly1305 (OpenSSL EVP_chacha20_poly1305 + Go HChaCha20) // +// (4) AEGIS (go-libaegis) +// // The golang.org/x/crypto libraries provides implementations for all algorithms, // and the test suite verifies that the implementation in this package gives // the exact same results. |