Fabcoin Core  0.16.2
P2P Digital Currency
Protected Member Functions | Protected Attributes | List of all members
PanamaCipherPolicy< B > Class Template Reference

Panama stream cipher operation. More...

#include <panama.h>

Inheritance diagram for PanamaCipherPolicy< B >:
[legend]
Collaboration diagram for PanamaCipherPolicy< B >:
[legend]

Protected Member Functions

void CipherSetKey (const NameValuePairs &params, const byte *key, size_t length)
 Key the cipher. More...
 
void OperateKeystream (KeystreamOperation operation, byte *output, const byte *input, size_t iterationCount)
 Operates the keystream. More...
 
bool CipherIsRandomAccess () const
 Flag indicating random access. More...
 
void CipherResynchronize (byte *keystreamBuffer, const byte *iv, size_t length)
 Resynchronize the cipher. More...
 
unsigned int GetAlignment () const
 Provides data alignment requirements. More...
 
- Protected Member Functions inherited from Panama< B >
void Reset ()
 
void Iterate (size_t count, const word32 *p=NULL, byte *output=NULL, const byte *input=NULL, KeystreamOperation operation=WRITE_KEYSTREAM)
 

Protected Attributes

FixedSizeSecBlock< word32, 8 > m_key
 
- Protected Attributes inherited from Panama< B >
FixedSizeAlignedSecBlock< word32, 20+8 *32 > m_state
 

Additional Inherited Members

- Public Types inherited from AdditiveCipherConcretePolicy< word32, 8 >
typedef word32 WordType
 
- Public Member Functions inherited from AdditiveCipherConcretePolicy< word32, 8 >
unsigned int GetAlignment () const
 Provides data alignment requirements. More...
 
unsigned int GetBytesPerIteration () const
 Provides number of bytes operated upon during an iteration. More...
 
unsigned int GetIterationsToBuffer () const
 Provides buffer size based on iterations. More...
 
bool CanOperateKeystream () const
 Flag indicating. More...
 
- Public Member Functions inherited from AdditiveCipherAbstractPolicy
virtual ~AdditiveCipherAbstractPolicy ()
 
virtual unsigned int GetOptimalBlockSize () const
 Provides number of ideal bytes to process. More...
 
virtual void WriteKeystream (byte *keystream, size_t iterationCount)
 Generate the keystream. More...
 
virtual void SeekToIteration (lword iterationCount)
 Seeks to a random position in the stream. More...
 
- Public Member Functions inherited from PanamaCipherInfo< B >
CRYPTOPP_STATIC_CONSTEXPR const char * StaticAlgorithmName ()
 
- Public Member Functions inherited from FixedKeyLength< 32, SimpleKeyingInterface::UNIQUE_IV, 32 >
CRYPTOPP_STATIC_CONSTEXPR size_t CRYPTOPP_API StaticGetValidKeyLength (size_t keylength)
 The default key length used by the algorithm provided as a constant. More...
 
- Protected Types inherited from Panama< B >
typedef word32 Stage[8]
 

Detailed Description

template<class B>
class PanamaCipherPolicy< B >

Panama stream cipher operation.

Definition at line 137 of file panama.h.

Member Function Documentation

template<class B >
bool PanamaCipherPolicy< B >::CipherIsRandomAccess ( ) const
inlineprotectedvirtual

Flag indicating random access.

Returns
true if the cipher is seekable, false otherwise
See also
SeekToIteration()

Implements AdditiveCipherAbstractPolicy.

Definition at line 144 of file panama.h.

template<class B >
void PanamaCipherPolicy< B >::CipherResynchronize ( byte keystreamBuffer,
const byte iv,
size_t  length 
)
protectedvirtual

Resynchronize the cipher.

Parameters
keystreamBufferthe keystream buffer
iva byte array used to resynchronize the cipher
lengththe size of the IV array

Reimplemented from AdditiveCipherAbstractPolicy.

Definition at line 460 of file panama.cpp.

Here is the call graph for this function:

template<class B >
void PanamaCipherPolicy< B >::CipherSetKey ( const NameValuePairs params,
const byte key,
size_t  length 
)
protectedvirtual

Key the cipher.

Parameters
paramsset of NameValuePairs use to initialize this object
keya byte array used to key the cipher
lengththe size of the key array

Implements AdditiveCipherAbstractPolicy.

Definition at line 452 of file panama.cpp.

Here is the call graph for this function:

template<class B >
unsigned int PanamaCipherPolicy< B >::GetAlignment ( ) const
protectedvirtual

Provides data alignment requirements.

Returns
data alignment requirements, in bytes

Internally, the default implementation returns 1. If the stream cipher is implemented using an SSE2 ASM or intrinsics, then the value returned is usually 16.

Reimplemented from AdditiveCipherAbstractPolicy.

Definition at line 489 of file panama.cpp.

template<class B >
void PanamaCipherPolicy< B >::OperateKeystream ( KeystreamOperation  operation,
byte output,
const byte input,
size_t  iterationCount 
)
protectedvirtual

Operates the keystream.

Parameters
operationthe operation with additional flags
outputthe output buffer
inputthe input buffer
iterationCountthe number of iterations to perform on the input

OperateKeystream() will attempt to operate upon GetOptimalBlockSize() buffer, which will be derived from GetBytesPerIteration().

See also
CanOperateKeystream(), OperateKeystream(), WriteKeystream(), KeystreamOperation()

Implements AdditiveCipherConcretePolicy< word32, 8 >.

Definition at line 500 of file panama.cpp.

Member Data Documentation

template<class B >
FixedSizeSecBlock<word32, 8> PanamaCipherPolicy< B >::m_key
protected

Definition at line 148 of file panama.h.


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