Fabcoin Core
0.16.2
P2P Digital Currency
|
Provides Encryption and Decryption typedefs used by derived classes to implement a symmetric cipher. More...
#include <seckey.h>
Public Types | |
typedef SymmetricCipher | Encryption |
implements the SymmetricCipher interface More... | |
typedef SymmetricCipher | Decryption |
implements the SymmetricCipher interface More... | |
Provides Encryption and Decryption typedefs used by derived classes to implement a symmetric cipher.
Each class derived from this one defines two types, Encryption and Decryption, both of which implement the SymmetricCipher interface. Two types of classes derive from this class: stream ciphers and block cipher modes. Stream ciphers can be used alone, cipher mode classes need to be used with a block cipher. See CipherModeDocumentation for more for information about using cipher modes and block ciphers.
implements the SymmetricCipher interface
implements the SymmetricCipher interface