summaryrefslogtreecommitdiff
path: root/xed25519.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-12-25 16:18:01 -0500
committerJeffrey Walton <noloader@gmail.com>2018-12-25 16:18:01 -0500
commit0311daf7e20922ca628af99187d1469f7411370e (patch)
tree613e2dce60dd127ca7d2926415ef0cbc039527b6 /xed25519.h
parentafd9c856eac885d24b415adabe2b4daeb01b2933 (diff)
downloadcryptopp-git-0311daf7e20922ca628af99187d1469f7411370e.tar.gz
Update documentation
Diffstat (limited to 'xed25519.h')
-rw-r--r--xed25519.h24
1 files changed, 14 insertions, 10 deletions
diff --git a/xed25519.h b/xed25519.h
index 203fb982..451a48b7 100644
--- a/xed25519.h
+++ b/xed25519.h
@@ -320,12 +320,14 @@ protected:
/// prime and binary fields.
/// \details ed25519PrivateKey is also unusual because the
/// class members of interest are byte arrays and not Integers.
-/// In addition, the byte byte arrays are "little-endian" meaning
+/// In addition, the byte arrays are little-endian meaning
/// LSB is at element 0 and the MSB is at element 31.
-/// \details If you call GetPrivateExponent() then the little-endian
-/// byte array is converted to a big-endian Integer so it can be
-/// returned the way a caller expects. And calling
-/// SetPrivateExponent() perfoms a similar internal conversion.
+/// If you call \ref ed25519PrivateKey::GetPrivateExponent()
+/// "GetPrivateExponent()" then the little-endian byte array is
+/// converted to a big-endian Integer() so it can be returned
+/// the way a caller expects. And calling
+/// \ref ed25519PrivateKey::SetPrivateExponent "SetPrivateExponent()"
+/// perfoms a similar internal conversion.
/// \since Crypto++ 8.0
struct ed25519PrivateKey : public PKCS8PrivateKey
{
@@ -575,12 +577,14 @@ protected:
/// prime and binary fields.
/// \details ed25519PublicKey is also unusual because the
/// class members of interest are byte arrays and not Integers.
-/// In addition, the byte byte arrays are "little-endian" meaning
+/// In addition, the byte arrays are little-endian meaning
/// LSB is at element 0 and the MSB is at element 31.
-/// \details If you call GetPublicElement() then the little-endian
-/// byte array is converted to a big-endian Integer so it can be
-/// returned the way a caller expects. And calling
-/// SetPublicElement() perfoms a similar internal conversion.
+/// If you call \ref ed25519PublicKey::GetPublicElement()
+/// "GetPublicElement()" then the little-endian byte array is
+/// converted to a big-endian Integer() so it can be returned
+/// the way a caller expects. And calling
+/// \ref ed25519PublicKey::SetPublicElement "SetPublicElement()"
+/// perfoms a similar internal conversion.
/// \since Crypto++ 8.0
struct ed25519PublicKey : public X509PublicKey
{