More package lines

This commit is contained in:
Jeroen van Rijn
2025-10-09 16:11:33 +02:00
parent af189b45f3
commit 248b0fe9e1
17 changed files with 28 additions and 30 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
/*
package aead provides a generic interface to the supported Authenticated
Encryption with Associated Data algorithms.
package aead implements a generic interface to Authenticated Encryption with Associated Data algorithms.
Both a one-shot and context based interface are provided, with similar
usage. If multiple messages are to be sealed/opened via the same key,
@@ -54,4 +54,4 @@ Example:
assert(bytes.equal(opened_pt, plaintext))
}
*/
package aead
package aead
+3 -2
View File
@@ -1,6 +1,7 @@
/*
package aegis implements the AEGIS-128L and AEGIS-256 Authenticated
Encryption with Additional Data algorithms.
package aegis implements the AEGIS-128L and AEGIS-256 AEAD algorithms.
Where AEAD stands for Authenticated Encryption with Additional Data.
See:
- [[ https://www.ietf.org/archive/id/draft-irtf-cfrg-aegis-aead-12.txt ]]
@@ -1,7 +1,7 @@
/*
package chacha20poly1305 implements the AEAD_CHACHA20_POLY1305 and
AEAD_XChaCha20_Poly1305 Authenticated Encryption with Additional Data
algorithms.
package chacha20poly1305 implements the CHACHA20_POLY1305 and XChaCha20_Poly1305 AEAD algorithms.
Where AEAD stands for Authenticated Encryption with Additional Data.
See:
- [[ https://www.rfc-editor.org/rfc/rfc8439 ]]
+1 -4
View File
@@ -1,7 +1,4 @@
/*
package crypto implements a selection of cryptography algorithms and useful
helper routines.
*/
// package crypto implements a selection of cryptography algorithms and useful helper routines.
package crypto
import "base:runtime"
+1 -2
View File
@@ -1,6 +1,5 @@
/*
package deoxysii implements the Deoxys-II-256 Authenticated Encryption
with Additional Data algorithm.
package deoxysii implements the Deoxys-II-256 Authenticated Encryption with Additional Data algorithm.
- [[ https://sites.google.com/view/deoxyscipher ]]
- [[ https://thomaspeyrin.github.io/web/assets/docs/papers/Jean-etal-JoC2021.pdf ]]