libsaltpack
|
The saltpack library namespace. More...
Classes | |
class | ArmoredInputStream |
Input Stream to parse BaseX armored content. More... | |
class | ArmoredOutputStream |
Output Stream to generate BaseX armored content. More... | |
class | MessageReader |
The class used to decrypt or verify a message. More... | |
class | MessageWriter |
The class used to encrypt or sign a message. More... | |
class | SaltpackException |
Saltpack exception. More... | |
class | Utils |
Utilities class. More... | |
Typedefs | |
typedef unsigned char | BYTE |
typedef std::vector< BYTE > | BYTE_ARRAY |
Variables | |
const int | MODE_ENCRYPTION = 0 |
const int | MODE_ATTACHED_SIGNATURE = 1 |
const int | MODE_DETACHED_SIGNATURE = 2 |
const int | MODE_SIGNCRYPTION = 3 |
The saltpack library namespace.
typedef unsigned char saltpack::BYTE |
An octet.
typedef std::vector<BYTE> saltpack::BYTE_ARRAY |
An array of bytes.
const int saltpack::MODE_ATTACHED_SIGNATURE = 1 |
Attached signature mode, used in ArmoredOutputStream.
const int saltpack::MODE_DETACHED_SIGNATURE = 2 |
Detached signature mode, used in ArmoredOutputStream.
const int saltpack::MODE_ENCRYPTION = 0 |
Encryption mode, used in ArmoredOutputStream.
const int saltpack::MODE_SIGNCRYPTION = 3 |
Signcryption mode.