diff options
author | lloyd <[email protected]> | 2006-08-05 12:02:36 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-08-05 12:02:36 +0000 |
commit | b7c25924c014c14ed0d08084bf41b08778d6be54 (patch) | |
tree | 5d26873c5d9040ca2b8ced399bf00895d41211cd | |
parent | 9b6d086eb20b08efbbc63cfbe70b61647fc27f2f (diff) |
The two classes that used to need direct access to the SHA-1
internals (Gamma and FIPS_186_RNG) have both been removed, so there
is no need to keep the friend declarations.
-rw-r--r-- | include/sha160.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/sha160.h b/include/sha160.h index dfe9f370d..554930436 100644 --- a/include/sha160.h +++ b/include/sha160.h @@ -21,9 +21,6 @@ class SHA_160 : public MDx_HashFunction HashFunction* clone() const { return new SHA_160; } SHA_160() : MDx_HashFunction(20, 64, true, true) { clear(); } private: - friend class Gamma; - friend class FIPS_186_RNG; - void hash(const byte[]); void copy_out(byte[]); |