summaryrefslogtreecommitdiff
path: root/cryptlib.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-07-28 12:35:25 -0400
committerJeffrey Walton <noloader@gmail.com>2017-07-28 12:35:25 -0400
commit3fc7b104e66d7c1ee398ab7cf6a3776f6b555923 (patch)
tree538757cc62f68d139d94fda2ca36fef306f693ed /cryptlib.h
parent46993f10f4ab0ce6085fa8e03c62f929639e9704 (diff)
downloadcryptopp-git-3fc7b104e66d7c1ee398ab7cf6a3776f6b555923.tar.gz
Update documentation
Diffstat (limited to 'cryptlib.h')
-rw-r--r--cryptlib.h19
1 files changed, 13 insertions, 6 deletions
diff --git a/cryptlib.h b/cryptlib.h
index abd7b410..2cb49c92 100644
--- a/cryptlib.h
+++ b/cryptlib.h
@@ -476,6 +476,13 @@ DOCUMENTED_NAMESPACE_BEGIN(Weak)
DOCUMENTED_NAMESPACE_END
#endif
+//! \brief Namespace containing testing and benchmark classes.
+//! \details Source files for classes in the Test namespaces include
+//! <tt>test.cpp</tt>, <tt>validat#.cpp</tt> and <tt>bench#.cpp</tt>.
+DOCUMENTED_NAMESPACE_BEGIN(Test)
+// testing and benchmark classes
+DOCUMENTED_NAMESPACE_END
+
//! \brief An empty set of name-value pairs
extern CRYPTOPP_DLL const NameValuePairs &g_nullNameValuePairs;
@@ -1847,7 +1854,7 @@ public:
//! \param inByte the 8-bit byte (octet) to be processed.
//! \param blocking specifies whether the object should block when processing input.
//! \return 0 indicates all bytes were processed during the call. Non-0 indicates the
- //! number of bytes that were \a not processed.
+ //! number of bytes that were not processed.
size_t ChannelPut(const std::string &channel, byte inByte, bool blocking=true)
{return ChannelPut(channel, &inByte, 1, blocking);}
@@ -1857,7 +1864,7 @@ public:
//! \param length the size of the string, in bytes
//! \param blocking specifies whether the object should block when processing input
//! \return 0 indicates all bytes were processed during the call. Non-0 indicates the
- //! number of bytes that were \a not processed.
+ //! number of bytes that were not processed.
size_t ChannelPut(const std::string &channel, const byte *inString, size_t length, bool blocking=true)
{return ChannelPut2(channel, inString, length, 0, blocking);}
@@ -1867,7 +1874,7 @@ public:
//! \param length the size of the string, in bytes
//! \param blocking specifies whether the object should block when processing input
//! \return 0 indicates all bytes were processed during the call. Non-0 indicates the
- //! number of bytes that were \a not processed.
+ //! number of bytes that were not processed.
size_t ChannelPutModifiable(const std::string &channel, byte *inString, size_t length, bool blocking=true)
{return ChannelPutModifiable2(channel, inString, length, 0, blocking);}
@@ -1877,7 +1884,7 @@ public:
//! \param order the ByteOrder of the value to be processed.
//! \param blocking specifies whether the object should block when processing input.
//! \return 0 indicates all bytes were processed during the call. Non-0 indicates the
- //! number of bytes that were \a not processed.
+ //! number of bytes that were not processed.
size_t ChannelPutWord16(const std::string &channel, word16 value, ByteOrder order=BIG_ENDIAN_ORDER, bool blocking=true);
//! \brief Input a 32-bit word for processing on a channel.
@@ -1886,7 +1893,7 @@ public:
//! \param order the ByteOrder of the value to be processed.
//! \param blocking specifies whether the object should block when processing input.
//! \return 0 indicates all bytes were processed during the call. Non-0 indicates the
- //! number of bytes that were \a not processed.
+ //! number of bytes that were not processed.
size_t ChannelPutWord32(const std::string &channel, word32 value, ByteOrder order=BIG_ENDIAN_ORDER, bool blocking=true);
//! \brief Signal the end of a message
@@ -1894,7 +1901,7 @@ public:
//! \param propagation the number of attached transformations the ChannelMessageEnd() signal should be passed
//! \param blocking specifies whether the object should block when processing input
//! \return 0 indicates all bytes were processed during the call. Non-0 indicates the
- //! number of bytes that were \a not processed.
+ //! number of bytes that were not processed.
//! \details propagation count includes this object. Setting propagation to <tt>1</tt> means this
//! object only. Setting propagation to <tt>-1</tt> means unlimited propagation.
bool ChannelMessageEnd(const std::string &channel, int propagation=-1, bool blocking=true)