summaryrefslogtreecommitdiff
path: root/asn.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-10-01 19:23:29 -0400
committerJeffrey Walton <noloader@gmail.com>2019-10-01 19:23:29 -0400
commit1b8045def0ef2084ce0c0e078945c651d13ca2c2 (patch)
tree3fcd84e94093ffac4246694edfa5ec25ce260c32 /asn.h
parent2e284f6b2895c728d5fd7a5b8c66b6a3a5a032df (diff)
downloadcryptopp-git-1b8045def0ef2084ce0c0e078945c651d13ca2c2.tar.gz
Update documentation
Diffstat (limited to 'asn.h')
-rw-r--r--asn.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/asn.h b/asn.h
index a51d7e56..f81d41fe 100644
--- a/asn.h
+++ b/asn.h
@@ -133,6 +133,7 @@ CRYPTOPP_DLL size_t CRYPTOPP_API BERDecodeOctetString(BufferedTransformation &bt
/// \brief DER encode text string
/// \param bt BufferedTransformation object for writing
/// \param str the string to encode
+/// \param strLen the length of the string, in bytes
/// \param asnTag the ASN.1 type
/// \returns the number of octets used for the encoding
/// \details DEREncodeTextString() can be used for UTF8_STRING, PRINTABLE_STRING, and IA5_STRING
@@ -857,13 +858,13 @@ inline bool operator<(const OID &lhs, const OID &rhs);
/// \param rhs the second OID
/// \returns true if the first OID is less than or equal to the second OID, false otherwise
/// \details operator<=() is implemented in terms of operator==() and operator<().
-inline bool operator<=(const ::CryptoPP::OID &lhs, const ::CryptoPP::OID &rhs)
+inline bool operator<=(const ::CryptoPP::OID &lhs, const ::CryptoPP::OID &rhs);
/// \brief Compare two OIDs for ordering
/// \param lhs the first OID
/// \param rhs the second OID
/// \returns true if the first OID is greater than or equal to the second OID, false otherwise
/// \details operator>=() is implemented in terms of operator<().
-inline bool operator>=(const ::CryptoPP::OID &lhs, const ::CryptoPP::OID &rhs)
+inline bool operator>=(const ::CryptoPP::OID &lhs, const ::CryptoPP::OID &rhs);
/// \brief Append a value to an OID
/// \param lhs the OID
/// \param rhs the value to append