summaryrefslogtreecommitdiff
path: root/naclite.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-01-22 15:54:51 -0500
committerJeffrey Walton <noloader@gmail.com>2018-01-22 15:54:51 -0500
commitb6c6684451f925ab2e0b99acbaf66fd487ebfbd5 (patch)
treeadbd93a0f0c0a3bda600e5e903db32044392d179 /naclite.h
parentd4293182301772b9ce2a2020117b77905639c0f5 (diff)
downloadcryptopp-git-b6c6684451f925ab2e0b99acbaf66fd487ebfbd5.tar.gz
Update documentationCRYPTOPP_6_0_0
Diffstat (limited to 'naclite.h')
-rw-r--r--naclite.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/naclite.h b/naclite.h
index c8e937f0..16a691cb 100644
--- a/naclite.h
+++ b/naclite.h
@@ -221,7 +221,7 @@ int crypto_box_open_afternm(uint8_t *m,const uint8_t *c,uint64_t d,const uint8_t
/// \param y other's public key
/// \param x private key
/// \details crypto_box() uses crypto_box_curve25519xsalsa20poly1305.
-/// \details This version of crypto_box() does not check for small order elements. It is unsafe
+/// \details This version of crypto_box() does not check for small order elements. It can be unsafe
/// but it exists for backwards compatibility with downlevel clients. Without the compatibility
/// interop with early versions of NaCl, libsodium and other libraries does not exist. The
/// downlevel interop may also be needed of cryptocurrencies like Bitcoin, Ethereum, Monero
@@ -245,7 +245,7 @@ int crypto_box_unchecked(uint8_t *c,const uint8_t *m,uint64_t d,const uint8_t *n
/// \param y other's public key
/// \param x private key
/// \details crypto_box_open() uses crypto_box_curve25519xsalsa20poly1305.
-/// \details This version of crypto_box_open() does not check for small order elements. It is unsafe
+/// \details This version of crypto_box_open() does not check for small order elements. It can be unsafe
/// but it exists for backwards compatibility with downlevel clients. Without the compatibility
/// interop with early versions of NaCl, libsodium and other libraries does not exist. The
/// downlevel interop may also be needed of cryptocurrencies like Bitcoin, Ethereum, Monero
@@ -267,7 +267,7 @@ int crypto_box_open_unchecked(uint8_t *m,const uint8_t *c,uint64_t d,const uint8
/// \param x private key
/// \details crypto_box_beforenm() performs message-independent precomputation to derive the key.
/// Once the key is derived multiple calls to crypto_box_afternm() can be made to process the message.
-/// \details This version of crypto_box_beforenm() does not check for small order elements. It is unsafe
+/// \details This version of crypto_box_beforenm() does not check for small order elements. It can be unsafe
/// but it exists for backwards compatibility with downlevel clients. Without the compatibility
/// interop with early versions of NaCl, libsodium and other libraries does not exist. The
/// downlevel interop may also be needed of cryptocurrencies like Bitcoin, Ethereum, Monero