summaryrefslogtreecommitdiff
path: root/extra/yassl/taocrypt/include/sha.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'extra/yassl/taocrypt/include/sha.hpp')
-rw-r--r--extra/yassl/taocrypt/include/sha.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/extra/yassl/taocrypt/include/sha.hpp b/extra/yassl/taocrypt/include/sha.hpp
index b75d9e3f670..3e301a6f0ae 100644
--- a/extra/yassl/taocrypt/include/sha.hpp
+++ b/extra/yassl/taocrypt/include/sha.hpp
@@ -42,6 +42,7 @@ public:
word32 getDigestSize() const { return DIGEST_SIZE; }
word32 getPadSize() const { return PAD_SIZE; }
+ void Update(const byte* data, word32 len);
void Init();
SHA(const SHA&);
@@ -50,6 +51,7 @@ public:
void Swap(SHA&);
private:
void Transform();
+ void AsmTransform(const byte* data, word32 times);
};