summaryrefslogtreecommitdiff
path: root/naclite.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-03-27 21:17:10 -0400
committerJeffrey Walton <noloader@gmail.com>2018-03-27 21:17:10 -0400
commit8fca97da54337f9b1c9cebb0c148c9fc3b257801 (patch)
tree5510a97b2ef3dafe39edf0e3cf544342fef191fb /naclite.h
parente9b6e85b7750c743d95c2d5c59af2caa69f83a3e (diff)
downloadcryptopp-git-8fca97da54337f9b1c9cebb0c148c9fc3b257801.tar.gz
Update documentation
Diffstat (limited to 'naclite.h')
-rw-r--r--naclite.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/naclite.h b/naclite.h
index 2e9afd3b..c2183ae5 100644
--- a/naclite.h
+++ b/naclite.h
@@ -14,12 +14,6 @@
/// ed25519 signatures. The complete list of functions can be found in
/// <A HREF="https://tweetnacl.cr.yp.to/tweetnacl-20140917.pdf">TweetNaCl:
/// A crypto library in 100 tweets</A> (20140917), Table 1, page 5.
-/// \details Crypto++ retained the function names and signatures but switched to
-/// data types provided by &lt;stdint.h&gt; to promote interoperability with
-/// Crypto++ and avoid size problems on platforms like Cygwin. For example,
-/// NaCl typdef'd <tt>u64</tt> as an <tt>unsigned long long</tt>, but Cygwin,
-/// MinGW and MSYS are <tt>LP64</tt> systems (not <tt>LLP64</tt> systems). In
-/// addition, Crypto++ was missing NaCl's signed 64-bit integer <tt>i64</tt>.
/// \details Crypto++ rejects small order elements using libsodium's blacklist. The
/// TweetNaCl library allowed them but the library predated the attack. If you wish
/// to allow small elements then use the "unchecked" versions of crypto_box_unchecked,