Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F10907640
sha256.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
803 B
Subscribers
None
sha256.h
View Options
// Copyright (c) 2014-2016 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_CRYPTO_SHA256_H
#define BITCOIN_CRYPTO_SHA256_H
#include
<cstdint>
#include
<cstdlib>
#include
<string>
/** A hasher class for SHA-256. */
class
CSHA256
{
private
:
uint32_t
s
[
8
];
uint8_t
buf
[
64
];
uint64_t
bytes
;
public
:
static
const
size_t
OUTPUT_SIZE
=
32
;
CSHA256
();
CSHA256
&
Write
(
const
uint8_t
*
data
,
size_t
len
);
void
Finalize
(
uint8_t
hash
[
OUTPUT_SIZE
]);
CSHA256
&
Reset
();
};
/**
* Autodetect the best available SHA256 implementation.
* Returns the name of the implementation.
*/
std
::
string
SHA256AutoDetect
();
#endif
// BITCOIN_CRYPTO_SHA256_H
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Mon, Nov 25, 08:07 (1 d, 20 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
4540390
Default Alt Text
sha256.h (803 B)
Attached To
rSTAGING Bitcoin ABC staging
Event Timeline
Log In to Comment