summaryrefslogtreecommitdiff
path: root/asn.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-10-01 20:07:02 -0400
committerJeffrey Walton <noloader@gmail.com>2019-10-01 20:07:02 -0400
commitf5c817221bace9baec5ace88b3c7588d21a34c0e (patch)
treec74c4da74716181d785bdb029c754e44f400edd8 /asn.h
parentf117c61d0729ea7bdabd87c63a3ce1b21aa8ae62 (diff)
downloadcryptopp-git-f5c817221bace9baec5ace88b3c7588d21a34c0e.tar.gz
Update documentation
Diffstat (limited to 'asn.h')
-rw-r--r--asn.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/asn.h b/asn.h
index 8dce21a3..fc61b785 100644
--- a/asn.h
+++ b/asn.h
@@ -283,7 +283,7 @@ public:
/// \returns ostream reference
/// \details Print() writes the OID in a customary format, like
/// 1.2.840.113549.1.1.11. The caller is reposnsible to convert the
- /// OID to a friemdly name, like sha256WithRSAEncryption.
+ /// OID to a friendly name, like sha256WithRSAEncryption.
/// \since Crypto++ 8.3
std::ostream& Print(std::ostream& out) const;
@@ -880,14 +880,14 @@ inline bool operator<(const OID &lhs, const OID &rhs);
/// \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<().
/// \since Crypto++ 8.3
-inline bool operator<=(const ::CryptoPP::OID &lhs, const ::CryptoPP::OID &rhs);
+inline bool operator<=(const OID &lhs, const 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<().
/// \since Crypto++ 8.3
-inline bool operator>=(const ::CryptoPP::OID &lhs, const ::CryptoPP::OID &rhs);
+inline bool operator>=(const OID &lhs, const OID &rhs);
/// \brief Append a value to an OID
/// \param lhs the OID
/// \param rhs the value to append