BDE 4.14.0 Production release
|
#include <bdlde_sha2.h>
Public Member Functions | |
Sha224 () | |
Sha224 (const void *data, bsl::size_t length) | |
void | reset () |
void | update (const void *data, bsl::size_t length) |
void | loadDigestAndReset (unsigned char *result) |
void | loadDigest (unsigned char *result) const |
Load the value of this SHA-2 digest into the specified result . | |
bsl::ostream & | print (bsl::ostream &stream) const |
Static Public Attributes | |
static const bsl::size_t | k_DIGEST_SIZE = 224 / 8 |
The size (in bytes) of the output. | |
Friends | |
bool | operator== (const Sha224 &, const Sha224 &) |
This class
represents a SHA-224 digest that can be updated as additional data is provided.
More generally, this class supports a complete set of value semantic operations, including copy construction, assignment, equality comparison, and ostream
printing. (A precise operational definition of when two instances have the same value can be found in the description of operator==
for the class.) This container is exception neutral with no guarantee of rollback: if an exception is thrown during the invocation of a method on a pre-existing instance, the class is left in a valid state, but its value is undefined. In no event is memory leaked. Finally, aliasing (e.g., using all or part of an object as both source and destination) is supported in all cases.
See bdlde_sha2
bdlde::Sha224::Sha224 | ( | ) |
Construct a SHA-2 digest having the value corresponding to no data having been provided.
bdlde::Sha224::Sha224 | ( | const void * | data, |
bsl::size_t | length | ||
) |
Construct a SHA-2 digest corresponding to the specified data
having the specified length
(in bytes). Note that if data
is 0, then length
also must be 0.
void bdlde::Sha224::loadDigest | ( | unsigned char * | result | ) | const |
void bdlde::Sha224::loadDigestAndReset | ( | unsigned char * | result | ) |
Load the current value of this SHA-2 digest into the specified result
and set the value of this SHA-2 digest to the value provided by the default constructor.
bsl::ostream & bdlde::Sha224::print | ( | bsl::ostream & | stream | ) | const |
Format the current value of this SHA-2 digest to the specified output stream
and return a reference to the modifiable stream
.
void bdlde::Sha224::reset | ( | ) |
Reset the value of this SHA-2 digest to the value provided by the default constructor.
void bdlde::Sha224::update | ( | const void * | data, |
bsl::size_t | length | ||
) |
Update the value of this SHA-2 digest to incorporate the specified data
having the specified length
in bytes. If the current state is the default state, the resultant value of this SHA-2 digest is the application of the SHA-2 algorithm upon the currently given data
of the given length
. If this digest has been previously provided data and has not been subsequently reset, the current state is not the default state and the resultant value is equivalent to applying the SHA-2 algorithm upon the concatenation of all the provided data. The behavior is undefined unless the range [data, data + length)
is a valid range. Note that if data
is 0, then length
must also be 0.
Return true
if the specified lhs
and rhs
SHA digests have the same value, and false
otherwise. Two digests have the same value if, after applying any number of equivalent updates to both (possibly including no updates), the values obtained from their respective loadDigest
methods are identical.
|
static |