]> git.codecow.com Git - Monocypher.git/commitdiff
intro, crypto_poly1305: standardize "one-time"
authorFabio Scotoni <34964387+fscoto@users.noreply.github.com>
Tue, 31 Mar 2020 11:46:03 +0000 (13:46 +0200)
committerFabio Scotoni <34964387+fscoto@users.noreply.github.com>
Tue, 31 Mar 2020 11:47:40 +0000 (13:47 +0200)
doc/man/man3/crypto_poly1305.3monocypher
doc/man/man3/intro.3monocypher

index 72208ed1ebf136dc5eaa444ea758d645e8697e7a..b9c1f55aa0a269395febfde08f7bbd75658b7a79 100644 (file)
@@ -218,7 +218,7 @@ If you are certain you do not want encryption, refer to
 on how to use Blake2b to generate message authentication codes.
 .Ss Authentication key requirements
 Poly1305 is a
-.Em one time
+.Em one-time
 authenticator.
 This puts rather stringent constraints on the authentication key:
 .Bl -bullet
index f719b8766c2d297a0150ae62e47a5cfa06785d0b..4a5880c318e39d4a1436e3e59dadd0977dad69be 100644 (file)
@@ -50,7 +50,7 @@
 .\" with this software.  If not, see
 .\" <https://creativecommons.org/publicdomain/zero/1.0/>
 .\"
-.Dd March 25, 2020
+.Dd March 31, 2020
 .Dt INTRO 3MONOCYPHER
 .Os
 .Sh NAME
@@ -64,13 +64,13 @@ hashing and key derivation, key exchange, and public key signatures.
 .Xr crypto_lock 3monocypher
 and
 .Xr crypto_unlock 3monocypher
-use the Chacha20 cipher and the Poly1305 one time authenticator.
+use the Chacha20 cipher and the Poly1305 one-time authenticator.
 .Pp
 Chacha20 is a stream cipher based on a cryptographic hash function.
 It runs efficiently on a wide variety of hardware, and unlike AES
 naturally runs in constant time on all hardware.
 .Pp
-Poly1305 is a one time authenticator, derived from Carter & Wegman
+Poly1305 is a one-time authenticator, derived from Carter & Wegman
 universal hashing.
 It is very fast and very simple.
 .Pp