Hash.h cleanup
authorsvost <ya.nowa@yandex.ru>
Thu, 14 Apr 2016 08:09:45 +0000 (11:09 +0300)
committersvost <ya.nowa@yandex.ru>
Thu, 14 Apr 2016 08:09:45 +0000 (11:09 +0300)
src/hash.h

index 7dbf1b6..2f4d7da 100644 (file)
@@ -124,16 +124,4 @@ inline uint160 Hash160(const std::vector<unsigned char>& vch)
     return Hash160(vch.begin(), vch.end());
 }
 
-unsigned int MurmurHash3(unsigned int nHashSeed, const std::vector<unsigned char>& vDataToHash);
-
-typedef struct
-{
-    SHA512_CTX ctxInner;
-    SHA512_CTX ctxOuter;
-} HMAC_SHA512_CTX;
-
-int HMAC_SHA512_Init(HMAC_SHA512_CTX *pctx, const void *pkey, size_t len);
-int HMAC_SHA512_Update(HMAC_SHA512_CTX *pctx, const void *pdata, size_t len);
-int HMAC_SHA512_Final(unsigned char *pmd, HMAC_SHA512_CTX *pctx);
-
 #endif