|
@@ -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
|