]> git.codecow.com Git - Monocypher.git/commitdiff
Documentation: Get rid of "we" for more neutral style
authorFabio Scotoni <34964387+fscoto@users.noreply.github.com>
Thu, 5 Dec 2019 07:54:58 +0000 (08:54 +0100)
committerFabio Scotoni <34964387+fscoto@users.noreply.github.com>
Thu, 5 Dec 2019 07:54:58 +0000 (08:54 +0100)
doc/man/man3/crypto_argon2i.3monocypher
doc/man/man3/crypto_blake2b.3monocypher
doc/man/man3/optional/crypto_hmac_sha512.3monocypher
doc/man/man3/optional/crypto_sha512.3monocypher

index 7e38448949c9e6324501c4e6b882de3ec3918acb..2374590327a2c91834b3026a56475046751d25ee 100644 (file)
@@ -124,8 +124,8 @@ and
 .Fa nb_iterations
 parameters, it should first be decided how long the computation should
 take.
-For user authentication, we recommend somewhere between half a second
-(convenient) and several seconds (paranoid).
+For user authentication, values somewhere between half a second
+(convenient) and several seconds (paranoid) are recommended.
 The computation should use as much memory as can be spared.
 .Pp
 Since parameter selection depends on your hardware, some trial and error
index 710aef4b76fc11732a10930371f8d12889b06604..a328d2ab0b094bd33c3b11290d7941be88492588 100644 (file)
@@ -132,16 +132,16 @@ initialisation with
 .Fn crypto_blake2b_general_init
 or
 .Fn crypto_blake2b_init ,
-where we set up a context with the hashing parameters;
+which sets up a context with the hashing parameters;
 .It
 update with
 .Fn crypto_blake2b_update ,
-where we hash the message chunk by chunk, and keep the intermediary
+which hashes the message chunk by chunk, and keep the intermediary
 result in the context;
 .It
 and finalisation with
 .Fn crypto_blake2b_final ,
-where we produce the final hash.
+which produces the final hash.
 The
 .Ft crypto_blake2b_ctx
 is automatically wiped upon finalisation.
index 003c5191e83edce2afc0d0964946469735dc4ec3..d96eb9bccffe56be105a1c86ad4263df9b985ef9 100644 (file)
@@ -84,16 +84,16 @@ This interface uses three steps:
 .It
 initialisation with
 .Fn crypto_hmac_sha512_init ,
-where we set up a context with the hashing parameters;
+which sets up a context with the hashing parameters;
 .It
 update with
 .Fn crypto_hmac_sha512_update ,
-where we hash the message chunk by chunk, and keep the intermediary
+which hashes the message chunk by chunk, and keep the intermediary
 result in the context;
 .It
 and finalisation with
 .Fn crypto_hmac_sha512_final ,
-where we produce the final hash.
+which produces the final hash.
 The
 .Ft crypto_hmac_sha512_ctx
 is automatically wiped upon finalisation.
index 65885317f3a52e832e74f61bf88bffeb843ca176..5a6162424371c95edd367e59029a6c1df825a2cc 100644 (file)
@@ -78,16 +78,16 @@ This interface uses three steps:
 .It
 initialisation with
 .Fn crypto_sha512_init ,
-where we set up a context with the hashing parameters;
+which sets up a context with the hashing parameters;
 .It
 update with
 .Fn crypto_sha512_update ,
-where we hash the message chunk by chunk, and keep the intermediary
+which hashes the message chunk by chunk, and keep the intermediary
 result in the context;
 .It
 and finalisation with
 .Fn crypto_sha512_final ,
-where we produce the final hash.
+which produces the final hash.
 The
 .Ft crypto_sha512_ctx
 is automatically wiped upon finalisation.