#include <RSA.h>
Inheritance diagram for CODEX_Ciphers::RSACipherText:


Public Member Functions | |
| RSACipherText () | |
| Default constructor, for creating an object to be unmarshalled. | |
| RSACipherText (BIGNUM *c) | |
| Constructor taking ciphertext as a BIGNUM. | |
| RSACipherText (const CODEX_ASN1::BigNumber &c) | |
| Constructor taking ciphertext as a BigNumber. Also a copy con. | |
| virtual | ~RSACipherText () |
| Destructor. | |
| RSACipherText * | blind (const RSACipherText &aOther, const CODEX_ASN1::BigNumber &modulus) const |
| Blind a ciphertext. | |
| bool | operator== (const BigNumber &aBN) const |
| Equality operator. | |
| bool | operator!= (const BigNumber &aBN) const |
| Inequality operator. | |
| bool | operator< (const BigNumber &aBN) const |
| Less-than operator. | |
| bool | operator> (const BigNumber &aBN) const |
| Less-than operator. | |
| const BIGNUM * | value () const |
| BIGNUM structure. | |
| const ASN1_INTEGER * | asn1 () const |
| ASN1_INTEGER corresponding to the BIGNUM. | |
| int | marshal (unsigned char **pp) const |
| This function creates a serialized representation of the object, which is returned through the argument pp. | |
| void * | unmarshal (void *bogus, unsigned char **pp, long length) |
| This function takes a serialized representation of the object and recreates the object representation. | |
| bool | initialized () const |
Protected Attributes | |
| BIGNUM * | m_value |
| BigNumber as an OpenSSL BIGNUM. | |
| ASN1_INTEGER * | m_asn1 |
| BigNumber as an ASN.1 integer. | |
| bool | m_initialized |
| Has this object been initialized yet, or is it still blank? | |
This is just an extension of CODEX_ASN1::BigNumber.
Definition at line 36 of file RSA.h.
|
||||||||||||
|
Blind a ciphertext.
Definition at line 24 of file RSACipherText.cc. References RSACipherText(), and CODEX_ASN1::BigNumber::value(). |
|
|
|
||||||||||||||||
|
This function takes a serialized representation of the object and recreates the object representation. This must be overridden by the concrete derived class.
Implements CODEX_ASN1::Base. Definition at line 152 of file BigNumber.cc. References CODEX_ASN1::BigNumber::m_asn1, and CODEX_ASN1::BigNumber::m_value. Referenced by CODEX_Ciphers::ElGamalPrivateKey::fromFile(), CODEX_Client::Client::fromFile(), CODEX_Server::QuorumBuilderAct::handler(), CODEX_KeyService::VerifyWriteCallback::operator()(), CODEX_KeyService::ClientWriteCallback::operator()(), CODEX_KeyService::ClientCreateCallback::operator()(), CODEX_Ciphers::VarRSACipherText::unmarshal(), CODEX_Ciphers::VarRSABlindPlainText::unmarshal(), CODEX_Ciphers::VarRSABlindCipherText::unmarshal(), CODEX_Ciphers::TranslationCertificate::unmarshal(), CODEX_KeyService::KeyInfo::unmarshal(), CODEX_Server::ServerSignature::unmarshal(), CODEX_Ciphers::RSAPublicKey::unmarshal(), CODEX_Ciphers::RSAPrivateKey::unmarshal(), CODEX_Client::ReadKeyMsg::unmarshal(), CODEX_Ciphers::PolCredBase::unmarshal(), CODEX_VSS::ModExpFunctionalArgs::unmarshal(), CODEX_Client::KeyStoredMsg::unmarshal(), CODEX_Ciphers::ElGamalSignature::unmarshal(), CODEX_Ciphers::ElGamalSchnorrCipherText::unmarshal(), CODEX_Ciphers::ElGamalPublicKey::unmarshal(), CODEX_Ciphers::ElGamalCipherText::unmarshal(), CODEX_ThresholdCrypto::DLProof::unmarshal(), CODEX_Client::BlindKeyMsg::unmarshal(), CODEX_Server::SignedAugmentedEGPublicKey::unmarshal(), and CODEX_Server::AugmentedEGPublicKey::unmarshal(). |
1.4.1