summaryrefslogtreecommitdiff
path: root/pubkey.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-09-22 23:57:57 -0400
committerJeffrey Walton <noloader@gmail.com>2016-09-22 23:57:57 -0400
commit15855226fa3b50e64f879905daf16db476c8f45e (patch)
tree7867e463128f570ff1846b53d75d33001ea4f190 /pubkey.h
parente0651b458f05984e477adafb2d46ea78e91bdec2 (diff)
downloadcryptopp-git-15855226fa3b50e64f879905daf16db476c8f45e.tar.gz
Clang 3.9 and missing member definitions for template classes (Issue 300)
Diffstat (limited to 'pubkey.h')
-rw-r--r--pubkey.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/pubkey.h b/pubkey.h
index a2032612..9a89d388 100644
--- a/pubkey.h
+++ b/pubkey.h
@@ -327,7 +327,8 @@ public:
// ********************************************************
-typedef std::pair<const byte *, size_t> HashIdentifier;
+// Typedef change due to Clang, http://github.com/weidai11/cryptopp/issues/300
+typedef std::pair<const byte *, unsigned int> HashIdentifier;
//! \class PK_SignatureMessageEncodingMethod
//! \brief Interface for message encoding method for public key signature schemes.