Security Scol plugin
Public Member Functions | Static Public Member Functions | List of all members
SHA512 Class Reference

SHA-512 message digest. More...

#include <sha.h>

Inheritance diagram for SHA512:
IteratedHashWithStaticTransform< word64, BigEndian, 128, 64, SHA512, 64, true > ClonableImpl< DERIVED, BASE >

Public Member Functions

CRYPTOPP_STATIC_CONSTEXPR const char *CRYPTOPP_API StaticAlgorithmName ()
 The algorithm name.
 
std::string AlgorithmProvider () const
 
- Public Member Functions inherited from IteratedHashWithStaticTransform< word64, BigEndian, 128, 64, SHA512, 64, true >
 CRYPTOPP_CONSTANT (DIGESTSIZE=T_DigestSize ? T_DigestSize :T_StateSize)
 
unsigned int DigestSize () const
 Provides the digest size of the hash.
 
- Public Member Functions inherited from ClonableImpl< DERIVED, BASE >
ClonableClone () const
 Create a copy of this object.
 

Static Public Member Functions

static void CRYPTOPP_API InitState (HashWordType *state)
 Initialize state array.
 
static void CRYPTOPP_API Transform (HashWordType *digest, const HashWordType *data)
 Operate the hash.
 

Additional Inherited Members

- Protected Types inherited from IteratedHashWithStaticTransform< word64, BigEndian, 128, 64, SHA512, 64, true >
enum  
 
- Protected Member Functions inherited from IteratedHashWithStaticTransform< word64, BigEndian, 128, 64, SHA512, 64, true >
void HashEndianCorrectedBlock (const word64 *data)
 
void Init ()
 
word64 * StateBuf ()
 
- Protected Attributes inherited from IteratedHashWithStaticTransform< word64, BigEndian, 128, 64, SHA512, 64, true >
FixedSizeAlignedSecBlock< word64, Blocks, T_StateAligned > m_state
 

Detailed Description

SHA-512 message digest.

See also
SHA-512
Since
SHA2 since Crypto++ 4.0, Power8 SHA since Crypto++ 6.1

Definition at line 141 of file sha.h.

Member Function Documentation

◆ AlgorithmProvider()

std::string SHA512::AlgorithmProvider ( ) const

Definition at line 1087 of file sha.cpp.

◆ InitState()

void SHA512::InitState ( HashWordType *  state)
static

Initialize state array.

Parameters
statethe state of the hash

InitState sets a state array to SHA512 initial values

Hashes which derive from IteratedHashWithStaticTransform provide static member functions InitState and Transform. External classes, like SEAL and MDC, can initialize state with a user provided key and operate the hash on the data with the user supplied state.

Note
On Intel platforms the state array must be 16-byte aligned for SSE2.

Definition at line 1102 of file sha.cpp.

◆ StaticAlgorithmName()

CRYPTOPP_STATIC_CONSTEXPR const char *CRYPTOPP_API SHA512::StaticAlgorithmName ( )
inline

The algorithm name.

Returns
C-style string "SHA-512"

Definition at line 167 of file sha.h.

◆ Transform()

ANONYMOUS_NAMESPACE_END void SHA512::Transform ( HashWordType *  digest,
const HashWordType *  data 
)
static

Operate the hash.

Parameters
digestthe state of the hash
datathe data to be digested

Transform operates the hash on data. When the call is invoked digest holds initial state. Upon return digest holds the hash or updated state.

Hashes which derive from IteratedHashWithStaticTransform provide static member functions InitState and Transform. External classes, like SEAL and MDC, can initialize state with a user provided key and operate the hash on the data with the user supplied state.

Note
On Intel platforms the state array and data must be 16-byte aligned for SSE2.

Definition at line 1371 of file sha.cpp.


The documentation for this class was generated from the following files: