summaryrefslogtreecommitdiff
path: root/xed25519.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-12-25 08:51:48 -0500
committerJeffrey Walton <noloader@gmail.com>2018-12-25 08:51:48 -0500
commitd47f5506bb7f8157fff01363fc78672be3fdbfc3 (patch)
tree27de00a5e16a3829d91f29cb17d22009453fc19a /xed25519.h
parentf528e9a238de8b92ea849a86915ba7b08585a419 (diff)
downloadcryptopp-git-d47f5506bb7f8157fff01363fc78672be3fdbfc3.tar.gz
Update documentation
Diffstat (limited to 'xed25519.h')
-rw-r--r--xed25519.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/xed25519.h b/xed25519.h
index 6f0aa995..9678f0f8 100644
--- a/xed25519.h
+++ b/xed25519.h
@@ -8,7 +8,6 @@
// than x25519 does below. They are a little more accessible
// due to crypto_box operations.
-
/// \file xed25519.h
/// \brief Classes for x25519 and ed25519 operations
/// \details This implementation integrates Andrew Moon's public domain code
@@ -234,8 +233,8 @@ protected:
// ****************** ed25519 Signer *********************** //
/// \brief ed25519 message accumulator
-/// \details ed25519 buffers the entire message. The class does not
-/// digest the message incrementally, so you should be careful with
+/// \details ed25519 buffers the entire message, and does not
+/// digest the message incrementally. You should be careful with
/// large messages like files on-disk. The behavior is by design
/// because Bernstein feels small messages should be authenticated;
/// and larger messages will be hashed by the application.