![]() |
Feathercoin
0.5.0
P2P Digital Currency
|
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 |
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.
|
private |
|
private |