summaryrefslogtreecommitdiff
path: root/integer.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2015-07-30 17:35:58 -0400
committerJeffrey Walton <noloader@gmail.com>2015-07-30 17:35:58 -0400
commit22c3e411334041c8959055d1d104c3039f1e46b1 (patch)
tree35981e23e21213d2a5add610ac579a0f6c20cf65 /integer.h
parent2799132fd7c5f344c7685d0bc7903fb51ef7c2b3 (diff)
downloadcryptopp-git-22c3e411334041c8959055d1d104c3039f1e46b1.tar.gz
Removed USING_NAMESPACE(std). Changed cout → std::cout, cerr → std::cerr, ...
Diffstat (limited to 'integer.h')
-rw-r--r--integer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/integer.h b/integer.h
index 6d844fa5..37e39e66 100644
--- a/integer.h
+++ b/integer.h
@@ -77,7 +77,7 @@ public:
//! convert from two words
Integer(Sign s, word highWord, word lowWord);
- //! convert from string
+ //! convert from std::string
/*! str can be in base 2, 8, 10, or 16. Base is determined by a
case insensitive suffix of 'h', 'o', or 'b'. No suffix means base 10.
*/
@@ -138,7 +138,7 @@ public:
//! encode using Distinguished Encoding Rules, put result into a BufferedTransformation object
void DEREncode(BufferedTransformation &bt) const;
- //! encode absolute value as big-endian octet string
+ //! encode absolute value as big-endian octet std::string
void DEREncodeAsOctetString(BufferedTransformation &bt, size_t length) const;
//! encode absolute value in OpenPGP format, return length of output
@@ -157,7 +157,7 @@ public:
//!
void BERDecode(BufferedTransformation &bt);
- //! decode nonnegative value as big-endian octet string
+ //! decode nonnegative value as big-endian octet std::string
void BERDecodeAsOctetString(BufferedTransformation &bt, size_t length);
class OpenPGPDecodeErr : public Exception