]> git.codecow.com Git - Monocypher.git/commitdiff
Manual review: applying CuleX's advice
authorLoup Vaillant <loup@loup-vaillant.fr>
Mon, 6 Nov 2017 19:29:58 +0000 (20:29 +0100)
committerLoup Vaillant <loup@loup-vaillant.fr>
Mon, 6 Nov 2017 19:29:58 +0000 (20:29 +0100)
doc/man/man3/crypto_lock_init.3monocypher
doc/man/man3/crypto_poly1305_auth.3monocypher
doc/man/man3/crypto_sign_init_first_pass.3monocypher

index 7ad982ef1e36a450c6cac83dfc3a718cbb3e47e6..ff5b1b557cd621a291dc3ca56a6609520afeb3bd 100644 (file)
@@ -9,7 +9,7 @@
 .Nm crypto_lock_final ,
 .Nm crypto_unlock_update ,
 .Nm crypto_unlock_final
-.Nd incremental authenticated encryption with authenticated data
+.Nd incremental authenticated encryption with additional data
 .Sh SYNOPSIS
 .In monocypher.h
 .Ft void
@@ -82,7 +82,7 @@ Authentication with
 .Fn crypto_lock_auth .
 This authenticates (or verifies) additional data, if any.
 .It
-Update, with
+Update with
 .Fn crypto_lock_update
 for encryption, or
 .Fn crypto_unlock_update
@@ -90,7 +90,7 @@ for decryption.
 This encrypts (or decrypts) and authenticates (or verifies) part of
 the secret message.
 .It
-Final, with
+Finalisation with
 .Fn crypto_lock_final
 to generate the MAC, or
 .Fn crypto_unlock_final
index 2195cae7e478e242c256376249bb6e237f21e083..dbece627829d932a07b5734ba6fdc90d18025dda 100644 (file)
@@ -188,7 +188,7 @@ The authentication key should be wiped with
 .Xr crypto_wipe 3monocypher
 after use.
 .Pp
-Incremental interface users don't need to wipe the
+Incremental interface users do not need to wipe the
 .Ft crypto_poly1305_ctx
 explicitly,
 .Fn crypto_poly1305_final
index b84374134d18a4ed70cec4aeb99b687e960285e9..f9a5941c8d546a91fdb1ec77797211a1dc681450 100644 (file)
@@ -168,8 +168,8 @@ Ed25519 is described in RFC 7748.
 The same as documented on
 .Xr crypto_sign 3monocypher .
 .Sh IMPLEMENTATION DETAILS
-EdDSA signatures require two passes, that cannot be performed in
+EdDSA signatures require two passes that cannot be performed in
 parallel.
 There are ways around this limitation, but they all lower security in
 some way.
-For this reason, Monocypher doesn't support them.
+For this reason, Monocypher does not support them.