SilentEye 0.4.1
|
Common interface for cryptography plug-ins. More...
#include <cryptomoduleinterface.h>
Public Member Functions | |
virtual QPointer< EncodedData > | encode (QString key, QPointer< EncodedData > msg)=0 |
Encrypte data using a specific key. | |
virtual QPointer< EncodedData > | decode (QString key, QPointer< EncodedData > data)=0 |
Decrypte data using a specific key. |
Common interface for cryptography plug-ins.
Definition at line 25 of file cryptomoduleinterface.h.
virtual QPointer<EncodedData> SilentEyeFramework::CryptoModuleInterface::decode | ( | QString | key, |
QPointer< EncodedData > | data | ||
) | [pure virtual] |
Decrypte data using a specific key.
Implemented in SECryptoAES::SECryptoAES, and SECryptoAES256::SECryptoAES256.
Referenced by SilentEye::DecodeDialog::ok().
virtual QPointer<EncodedData> SilentEyeFramework::CryptoModuleInterface::encode | ( | QString | key, |
QPointer< EncodedData > | msg | ||
) | [pure virtual] |
Encrypte data using a specific key.
Implemented in SECryptoAES::SECryptoAES, and SECryptoAES256::SECryptoAES256.
Referenced by SilentEye::EncodeDialog::ok().