From 2c3ca1c01e2914062c2cb0969d0f9f7638c3cef4 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Tue, 25 Dec 2018 09:13:19 -0500 Subject: [PATCH] Update documentation --- xed25519.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xed25519.h b/xed25519.h index 07b8ba57..f523e89c 100644 --- a/xed25519.h +++ b/xed25519.h @@ -111,7 +111,7 @@ public: /// public key from the private key. void ClampKeys(byte y[PUBLIC_KEYLENGTH], byte x[SECRET_KEYLENGTH]) const; - /// \brief Test if a key is clamped + /// \brief Determine if private key is clamped /// \param x private key bool IsClamped(const byte x[SECRET_KEYLENGTH]) const; @@ -410,7 +410,7 @@ struct ed25519PrivateKey : public PKCS8PrivateKey /// public key from the private key. void ClampKeys(byte y[PUBLIC_KEYLENGTH], byte x[SECRET_KEYLENGTH]) const; - /// \brief Test if a key is clamped + /// \brief Determine if private key is clamped /// \param x private key bool IsClamped(const byte x[SECRET_KEYLENGTH]) const;