Fabcoin Core  0.16.2
P2P Digital Currency
sha512.h
Go to the documentation of this file.
1 // Copyright (c) 2014-2017 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.
4 
5 #ifndef FABCOIN_CRYPTO_SHA512_H
6 #define FABCOIN_CRYPTO_SHA512_H
7 
8 #include <stdint.h>
9 #include <stdlib.h>
10 
12 class CSHA512
13 {
14 private:
15  uint64_t s[8];
16  unsigned char buf[128];
17  uint64_t bytes;
18 
19 public:
20  static const size_t OUTPUT_SIZE = 64;
21 
22  CSHA512();
23  CSHA512& Write(const unsigned char* data, size_t len);
24  void Finalize(unsigned char hash[OUTPUT_SIZE]);
25  CSHA512& Reset();
26 };
27 
28 #endif // FABCOIN_CRYPTO_SHA512_H
uint64_t s[8]
Definition: sha512.h:15
void Finalize(unsigned char hash[OUTPUT_SIZE])
Definition: sha512.cpp:185
static const size_t OUTPUT_SIZE
Definition: sha512.h:20
unsigned char buf[128]
Definition: sha512.h:16
CSHA512 & Reset()
Definition: sha512.cpp:202
uint64_t bytes
Definition: sha512.h:17
CSHA512()
Definition: sha512.cpp:154
CSHA512 & Write(const unsigned char *data, size_t len)
Definition: sha512.cpp:159
A hasher class for SHA-512.
Definition: sha512.h:12
uint8_t const * data
Definition: sha3.h:19