Fabcoin Core
0.16.2
P2P Digital Currency
|
Message encoding method for public key encryption. More...
#include <pubkey.h>
Public Member Functions | |
virtual | ~PK_EncryptionMessageEncodingMethod () |
virtual bool | ParameterSupported (const char *name) const |
virtual size_t | MaxUnpaddedLength (size_t paddedLength) const =0 |
max size of unpadded message in bytes, given max size of padded message in bits (1 less than size of modulus) More... | |
virtual void | Pad (RandomNumberGenerator &rng, const byte *raw, size_t inputLength, byte *padded, size_t paddedBitLength, const NameValuePairs ¶meters) const =0 |
virtual DecodingResult | Unpad (const byte *padded, size_t paddedBitLength, byte *raw, const NameValuePairs ¶meters) const =0 |
|
inlinevirtual |
|
pure virtual |
max size of unpadded message in bytes, given max size of padded message in bits (1 less than size of modulus)
Implemented in PKCS_EncryptionPaddingScheme, and OAEP_Base.
|
pure virtual |
Implemented in PKCS_EncryptionPaddingScheme, and OAEP_Base.
|
inlinevirtual |
|
pure virtual |
Implemented in PKCS_EncryptionPaddingScheme, and OAEP_Base.