commit 50941720a2655f290858eb157c9fba601f4f1871
parent b49a98a00cddfa9e1db75d475ccd4b4f464d44df
Author: Sebastian <sebastian@sebsite.pw>
Date: Fri, 17 Jun 2022 17:02:51 -0400
crypto: remove crypto:: prefix in doc comment
Signed-off-by: Sebastian <sebastian@sebsite.pw>
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/crypto/authenc.ha b/crypto/authenc.ha
@@ -29,9 +29,9 @@ export type box = (mac, nonce, []u8);
//
// To use this function, you must first establish a session key which is shared
// with both parties. This key must be random and secret. You may derive this
-// key with a key exchange (such as [[exchange]] or [[crypto::dh]]), or with a
-// key derivation function (such as [[derivekey]]), or by sharing it in person,
-// or some other, similar means which preserves the traits of randomness and
+// key with a key exchange (such as [[exchange]] or [[dh]]), or with a key
+// derivation function (such as [[derivekey]]), or by sharing it in person, or
+// some other, similar means which preserves the traits of randomness and
// secrecy.
//
// You must also establish a unique nonce for each message, which you must not