Fabcoin Core  0.16.2
P2P Digital Currency
sha256.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_SHA256_H
6 #define FABCOIN_CRYPTO_SHA256_H
7 
8 #include <stdint.h>
9 #include <stdlib.h>
10 #include <string>
11 
13 class CSHA256
14 {
15 private:
16  uint32_t s[8];
17  unsigned char buf[64];
18  uint64_t bytes;
19 
20 public:
21  static const size_t OUTPUT_SIZE = 32;
22 
23  CSHA256();
24  CSHA256& Write(const unsigned char* data, size_t len);
25  void Finalize(unsigned char hash[OUTPUT_SIZE]);
26  CSHA256& Reset();
27 };
28 
32 std::string SHA256AutoDetect();
33 
34 #endif // FABCOIN_CRYPTO_SHA256_H
CSHA256 & Write(const unsigned char *data, size_t len)
Definition: sha256.cpp:201
uint32_t s[8]
Definition: sha256.h:16
CSHA256 & Reset()
Definition: sha256.cpp:244
void Finalize(unsigned char hash[OUTPUT_SIZE])
Definition: sha256.cpp:227
std::string SHA256AutoDetect()
Autodetect the best available SHA256 implementation.
Definition: sha256.cpp:179
uint64_t bytes
Definition: sha256.h:18
static const size_t OUTPUT_SIZE
Definition: sha256.h:21
CSHA256()
Definition: sha256.cpp:196
unsigned char buf[64]
Definition: sha256.h:17
A hasher class for SHA-256.
Definition: sha256.h:13
uint8_t const * data
Definition: sha3.h:19