aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/skein/skein_512.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/hash/skein/skein_512.h')
-rw-r--r--src/hash/skein/skein_512.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/hash/skein/skein_512.h b/src/hash/skein/skein_512.h
index 811b633eb..803f1c916 100644
--- a/src/hash/skein/skein_512.h
+++ b/src/hash/skein/skein_512.h
@@ -32,16 +32,16 @@ class BOTAN_DLL Skein_512 : public HashFunction
std::string name() const;
void clear();
private:
- void add_data(const byte input[], u32bit length);
+ void add_data(const byte input[], size_t length);
void final_result(byte out[]);
std::string personalization;
- u32bit output_bits;
+ size_t output_bits;
SecureVector<u64bit> H;
SecureVector<u64bit> T;
SecureVector<byte> buffer;
- u32bit buf_pos;
+ size_t buf_pos;
};
}