#include <pubkey.h>
Inheritance diagram for TF_DecryptorImpl< SCHEME_OPTIONS >:
Definition at line 336 of file pubkey.h.
Public Types | |
typedef SCHEME_OPTIONS | SchemeOptions |
typedef SCHEME_OPTIONS::PrivateKey | KeyClass |
Public Member Functions | |
void | CopyKeyInto (typename SCHEME_OPTIONS::PrivateKey &key) const |
void | CopyKeyInto (typename SCHEME_OPTIONS::PublicKey &key) const |
const SCHEME_OPTIONS::PrivateKey & | GetKey () const |
SCHEME_OPTIONS::PrivateKey & | AccessKey () |
PublicKey & | AccessPublicKey () |
const PublicKey & | GetPublicKey () const |
PrivateKey & | AccessPrivateKey () |
const PrivateKey & | GetPrivateKey () const |
const KeyClass & | GetTrapdoorFunction () const |
std::string | AlgorithmName () const |
DecodingResult | FixedLengthDecrypt (const byte *cipherText, byte *plainText) const |
decrypt a byte string, and return the length of plaintext | |
unsigned int | FixedMaxPlaintextLength () const |
unsigned int | FixedCiphertextLength () const |
DecodingResult | Decrypt (const byte *cipherText, unsigned int cipherTextLength, byte *plainText) const |
decrypt a byte string, and return the length of plaintext | |
virtual BufferedTransformation * | CreateDecryptionFilter (BufferedTransformation *attachment=NULL) const |
create a new decryption filter | |
virtual unsigned int | MaxPlaintextLength (unsigned int cipherTextLength) const=0 |
maximum length of plaintext for a given ciphertext length | |
unsigned int | MaxPlaintextLength (unsigned int cipherTextLength) const |
maximum length of plaintext for a given ciphertext length | |
virtual unsigned int | CiphertextLength (unsigned int plainTextLength) const=0 |
calculate length of ciphertext given length of plaintext | |
unsigned int | CiphertextLength (unsigned int plainTextLength) const |
calculate length of ciphertext given length of plaintext | |
CryptoMaterial & | AccessMaterial () |
returns a reference to the crypto material used by this object | |
const CryptoMaterial & | GetMaterial () const |
returns a const reference to the crypto material used by this object | |
void | BERDecode (BufferedTransformation &bt) |
for backwards compatibility, calls AccessMaterial().Load(bt) | |
void | DEREncode (BufferedTransformation &bt) const |
for backwards compatibility, calls GetMaterial().Save(bt) | |
virtual Clonable * | Clone () const |
this is not implemented by most classes yet | |
Protected Types | |
typedef TrapdoorFunctionInverse | TrapdoorFunctionInterface |
Protected Member Functions | |
const PK_PaddingAlgorithm & | GetPaddingAlgorithm () const |
const TrapdoorFunctionBounds & | GetTrapdoorFunctionBounds () const |
const TF_DecryptorBase::TrapdoorFunctionInterface & | GetTrapdoorFunctionInterface () const |
unsigned int | PaddedBlockBitLength () const |
unsigned int | PaddedBlockByteLength () const |
|
decrypt a byte string, and return the length of plaintext
Implements PK_FixedLengthDecryptor. Definition at line 41 of file pubkey.cpp. References SecBlock< byte >::size(), and Integer::Zero(). |
|
decrypt a byte string, and return the length of plaintext
Implements PK_Decryptor. Definition at line 611 of file cryptlib.cpp. References PK_FixedLengthDecryptor::FixedLengthDecrypt(). |
|
create a new decryption filter
Definition at line 551 of file cryptlib.cpp. |
|
maximum length of plaintext for a given ciphertext length
Implemented in PK_FixedLengthCryptoSystem. |
|
maximum length of plaintext for a given ciphertext length
Implements PK_CryptoSystem. Definition at line 595 of file cryptlib.cpp. |
|
calculate length of ciphertext given length of plaintext
Implemented in PK_FixedLengthCryptoSystem. |
|
calculate length of ciphertext given length of plaintext
Implements PK_CryptoSystem. Definition at line 603 of file cryptlib.cpp. |