Crypto++  8.8
Free C++ class library of cryptographic schemes
Public Member Functions | List of all members
Algorithm Class Reference

Interface for all crypto algorithms. More...

+ Inheritance diagram for Algorithm:

Public Member Functions

 Algorithm (bool checkSelfTestStatus=true)
 Interface for all crypto algorithms. More...
 
virtual std::string AlgorithmName () const
 Provides the name of this algorithm. More...
 
virtual std::string AlgorithmProvider () const
 Retrieve the provider of this algorithm. More...
 
- Public Member Functions inherited from Clonable
virtual ClonableClone () const
 Copies this object. More...
 

Detailed Description

Interface for all crypto algorithms.

Definition at line 603 of file cryptlib.h.

Constructor & Destructor Documentation

◆ Algorithm()

Algorithm::Algorithm ( bool  checkSelfTestStatus = true)

Interface for all crypto algorithms.

Parameters
checkSelfTestStatusdetermines whether the object can proceed if the self tests have not been run or failed.

When FIPS 140-2 compliance is enabled and checkSelfTestStatus == true, this constructor throws SelfTestFailure if the self test hasn't been run or fails.

FIPS 140-2 compliance is disabled by default. It is only used by certain versions of the library when the library is built as a DLL on Windows. Also see CRYPTOPP_ENABLE_COMPLIANCE_WITH_FIPS_140_2 in config.h.

Member Function Documentation

◆ AlgorithmName()

virtual std::string Algorithm::AlgorithmName ( ) const
inlinevirtual

◆ AlgorithmProvider()

virtual std::string Algorithm::AlgorithmProvider ( ) const
inlinevirtual

Retrieve the provider of this algorithm.

Returns
the algorithm provider

The algorithm provider can be a name like "C++", "SSE", "NEON", "AESNI", "ARMv8" and "Power8". C++ is standard C++ code. Other labels, like SSE, usually indicate a specialized implementation using instructions from a higher instruction set architecture (ISA). Future labels may include external hardware like a hardware security module (HSM).

Generally speaking Wei Dai's original IA-32 ASM code falls under "SSE2". Labels like "SSSE3" and "SSE4.1" follow after Wei's code and use intrinsics instead of ASM.

Algorithms which combine different instructions or ISAs provide the dominant one. For example on x86 AES/GCM returns "AESNI" rather than "CLMUL" or "AES+SSE4.1" or "AES+CLMUL" or "AES+SSE4.1+CLMUL".

Note
Provider is not universally implemented yet.
Since
Crypto++ 8.0

Reimplemented in XTS_ModeBase, VMAC_Base, AdditiveCipherTemplate< BASE >, RDSEED, RDRAND, Poly1305_Base< T >, Weak::PanamaHash< B >, PadlockRNG, AutoSeededX917RNG< BLOCK_CIPHER >, CipherModeBase, LSH512_Base, LSH256_Base, IteratedHashBase< T_HashWordType, HashTransformation >, IteratedHashBase< word64, MessageAuthenticationCode >, GCM_Base, EAX_Final< T_BlockCipher, T_IsEncryption >, EAX_Base, HMAC_DRBG< HASH, STRENGTH, SEEDLENGTH >, Hash_DRBG< HASH, STRENGTH, SEEDLENGTH >, DMAC_Base< T >, DARN, AuthenticatedSymmetricCipher, CRC32C, CRC32, CMAC_Base, XChaCha20Poly1305_Base, ChaCha20Poly1305_Base, CCM_Base, BLAKE2b, and BLAKE2s.

Definition at line 641 of file cryptlib.h.


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