[tests] remove redundant univalue_tests.cpp
[bitcoinplatinum.git] / src / crypto / hmac_sha512.h
blob6d3fd59f27e65d979d003d6b39048d6278f11ff0
1 // Copyright (c) 2014 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 #ifndef BITCOIN_CRYPTO_HMAC_SHA512_H
6 #define BITCOIN_CRYPTO_HMAC_SHA512_H
8 #include <crypto/sha512.h>
10 #include <stdint.h>
11 #include <stdlib.h>
13 /** A hasher class for HMAC-SHA-512. */
14 class CHMAC_SHA512
16 private:
17 CSHA512 outer;
18 CSHA512 inner;
20 public:
21 static const size_t OUTPUT_SIZE = 64;
23 CHMAC_SHA512(const unsigned char* key, size_t keylen);
24 CHMAC_SHA512& Write(const unsigned char* data, size_t len)
26 inner.Write(data, len);
27 return *this;
29 void Finalize(unsigned char hash[OUTPUT_SIZE]);
32 #endif // BITCOIN_CRYPTO_HMAC_SHA512_H