Feathercoin  0.5.0
P2P Digital Currency
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
Public Member Functions | Private Attributes | List of all members
CCrypter Class Reference

Encryption/decryption context with key information. More...

#include <crypter.h>

Public Member Functions

bool SetKeyFromPassphrase (const SecureString &strKeyData, const std::vector< unsigned char > &chSalt, const unsigned int nRounds, const unsigned int nDerivationMethod)
 
bool Encrypt (const CKeyingMaterial &vchPlaintext, std::vector< unsigned char > &vchCiphertext)
 
bool Decrypt (const std::vector< unsigned char > &vchCiphertext, CKeyingMaterial &vchPlaintext)
 
bool SetKey (const CKeyingMaterial &chNewKey, const std::vector< unsigned char > &chNewIV)
 
void CleanKey ()
 
 CCrypter ()
 
 ~CCrypter ()
 

Private Attributes

unsigned char chKey [WALLET_CRYPTO_KEY_SIZE]
 
unsigned char chIV [WALLET_CRYPTO_KEY_SIZE]
 
bool fKeySet
 

Detailed Description

Encryption/decryption context with key information.

Definition at line 64 of file crypter.h.

Constructor & Destructor Documentation

CCrypter::CCrypter ( )
inline

Definition at line 84 of file crypter.h.

CCrypter::~CCrypter ( )
inline

Definition at line 95 of file crypter.h.

Member Function Documentation

void CCrypter::CleanKey ( )
inline

Definition at line 77 of file crypter.h.

bool CCrypter::Decrypt ( const std::vector< unsigned char > &  vchCiphertext,
CKeyingMaterial vchPlaintext 
)

Definition at line 75 of file crypter.cpp.

bool CCrypter::Encrypt ( const CKeyingMaterial vchPlaintext,
std::vector< unsigned char > &  vchCiphertext 
)

Definition at line 48 of file crypter.cpp.

bool CCrypter::SetKey ( const CKeyingMaterial chNewKey,
const std::vector< unsigned char > &  chNewIV 
)

Definition at line 36 of file crypter.cpp.

bool CCrypter::SetKeyFromPassphrase ( const SecureString strKeyData,
const std::vector< unsigned char > &  chSalt,
const unsigned int  nRounds,
const unsigned int  nDerivationMethod 
)

Definition at line 15 of file crypter.cpp.

Member Data Documentation

unsigned char CCrypter::chIV[WALLET_CRYPTO_KEY_SIZE]
private

Definition at line 68 of file crypter.h.

unsigned char CCrypter::chKey[WALLET_CRYPTO_KEY_SIZE]
private

Definition at line 67 of file crypter.h.

bool CCrypter::fKeySet
private

Definition at line 69 of file crypter.h.


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