CernVM-FS
2.12.0
|
#include <encrypt.h>
Public Member Functions | |
virtual | ~CipherNone () |
virtual std::string | name () const |
virtual Algorithms | algorithm () const |
virtual unsigned | key_size () const |
virtual unsigned | iv_size () const |
virtual unsigned | block_size () const |
Public Member Functions inherited from cipher::Cipher | |
virtual | ~Cipher () |
bool | Encrypt (const std::string &plaintext, const Key &key, std::string *ciphertext) |
Protected Member Functions | |
virtual std::string | DoEncrypt (const std::string &plaintext, const Key &key) |
virtual std::string | DoDecrypt (const std::string &ciphertext, const Key &key) |
Protected Member Functions inherited from cipher::Cipher | |
Cipher () | |
Additional Inherited Members | |
Static Public Member Functions inherited from cipher::Cipher | |
static Cipher * | Create (const Algorithms a) |
static bool | Decrypt (const std::string &ciphertext, const Key &key, std::string *plaintext) |
No encryption, plaintext and ciphertext are identical. For testing.
|
inlinevirtual |
Implements cipher::Cipher.
|
inlinevirtual |
Implements cipher::Cipher.
|
protectedvirtual |
Implements cipher::Cipher.
Definition at line 348 of file encrypt.cc.
|
protectedvirtual |
Implements cipher::Cipher.
Definition at line 353 of file encrypt.cc.
|
inlinevirtual |
Implements cipher::Cipher.
|
inlinevirtual |
Implements cipher::Cipher.
|
inlinevirtual |
Implements cipher::Cipher.