Fabcoin Core  0.16.2
P2P Digital Currency
Public Member Functions | List of all members
SymmetricCipherFinal< BASE, INFO > Class Template Reference

SymmetricCipher implementation. More...

#include <strciphr.h>

Inheritance diagram for SymmetricCipherFinal< BASE, INFO >:
[legend]
Collaboration diagram for SymmetricCipherFinal< BASE, INFO >:
[legend]

Public Member Functions

virtual ~SymmetricCipherFinal ()
 
 SymmetricCipherFinal ()
 Construct a stream cipher. More...
 
 SymmetricCipherFinal (const byte *key)
 Construct a stream cipher. More...
 
 SymmetricCipherFinal (const byte *key, size_t length)
 Construct a stream cipher. More...
 
 SymmetricCipherFinal (const byte *key, size_t length, const byte *iv)
 Construct a stream cipher. More...
 
ClonableClone () const
 Clone a SymmetricCipher. More...
 
- Public Member Functions inherited from AlgorithmImpl< SimpleKeyingInterfaceImpl< BASE, INFO >, INFO >
std::string AlgorithmName () const
 
- Public Member Functions inherited from SimpleKeyingInterfaceImpl< BASE, INFO >
size_t MinKeyLength () const
 The minimum key length used by the algorithm. More...
 
size_t MaxKeyLength () const
 The maximum key length used by the algorithm. More...
 
size_t DefaultKeyLength () const
 The default key length used by the algorithm. More...
 
size_t GetValidKeyLength (size_t keylength) const
 Provides a valid key length for the algorithm. More...
 
SimpleKeyingInterface::IV_Requirement IVRequirement () const
 The default IV requirements for the algorithm. More...
 
unsigned int IVSize () const
 The default initialization vector length for the algorithm. More...
 

Additional Inherited Members

- Static Public Member Functions inherited from AlgorithmImpl< SimpleKeyingInterfaceImpl< BASE, INFO >, INFO >
static std::string CRYPTOPP_API StaticAlgorithmName ()
 

Detailed Description

template<class BASE, class INFO = BASE>
class SymmetricCipherFinal< BASE, INFO >

SymmetricCipher implementation.

Template Parameters
BASEAbstractPolicyHolder derived base class
INFOAbstractPolicyHolder derived information class
See also
Weak::ARC4, ChaCha8, ChaCha12, ChaCha20, Salsa20, SEAL, Sosemanuk, WAKE

Definition at line 584 of file strciphr.h.

Constructor & Destructor Documentation

template<class BASE , class INFO = BASE>
virtual SymmetricCipherFinal< BASE, INFO >::~SymmetricCipherFinal ( )
inlinevirtual

Definition at line 587 of file strciphr.h.

template<class BASE , class INFO = BASE>
SymmetricCipherFinal< BASE, INFO >::SymmetricCipherFinal ( )
inline

Construct a stream cipher.

Definition at line 590 of file strciphr.h.

template<class BASE , class INFO = BASE>
SymmetricCipherFinal< BASE, INFO >::SymmetricCipherFinal ( const byte key)
inline

Construct a stream cipher.

Parameters
keya byte array used to key the cipher

This overload uses DEFAULT_KEYLENGTH

Definition at line 595 of file strciphr.h.

template<class BASE , class INFO = BASE>
SymmetricCipherFinal< BASE, INFO >::SymmetricCipherFinal ( const byte key,
size_t  length 
)
inline

Construct a stream cipher.

Parameters
keya byte array used to key the cipher
lengththe size of the key array

Definition at line 601 of file strciphr.h.

template<class BASE , class INFO = BASE>
SymmetricCipherFinal< BASE, INFO >::SymmetricCipherFinal ( const byte key,
size_t  length,
const byte iv 
)
inline

Construct a stream cipher.

Parameters
keya byte array used to key the cipher
lengththe size of the key array
iva byte array used as an initialization vector

Definition at line 608 of file strciphr.h.

Member Function Documentation

template<class BASE , class INFO = BASE>
Clonable* SymmetricCipherFinal< BASE, INFO >::Clone ( ) const
inline

Clone a SymmetricCipher.

Returns
a new SymmetricCipher based on this object

Definition at line 613 of file strciphr.h.


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