wxSQLite3 4.9.12
|
Cipher class representing ChaCha20 encryption with Poly1305 HMAC. More...
#include <wxsqlite3.h>
Public Member Functions | |
wxSQLite3CipherChaCha20 () | |
Constructor. | |
wxSQLite3CipherChaCha20 (const wxSQLite3CipherChaCha20 &cipher) | |
Copy constructor. | |
virtual | ~wxSQLite3CipherChaCha20 () |
Destructor. | |
virtual bool | InitializeFromGlobalDefault () |
Initialize the cipher instance based on global default settings. | |
virtual bool | InitializeFromCurrent (wxSQLite3Database &db) |
Initialize the cipher instance based on current settings. | |
virtual bool | InitializeFromCurrentDefault (wxSQLite3Database &db) |
Initialize the cipher instance based on current default settings. | |
virtual bool | Apply (wxSQLite3Database &db) const |
Apply the cipher parameters to a database connection. | |
virtual bool | Apply (void *dbHandle) const |
void | SetLegacy (bool legacy) |
Set legacy mode. | |
bool | GetLegacy () const |
Get legacy mode. | |
void | SetKdfIter (int kdfIter) |
Set iteration count of KDF function for ordinary key. | |
int | GetKdfIter () const |
Get iteration count of KDF function for ordinary key. | |
Public Member Functions inherited from wxSQLite3Cipher | |
wxSQLite3Cipher () | |
Constructor. | |
virtual | ~wxSQLite3Cipher () |
Destructor. | |
void | SetLegacyPageSize (int pageSize) |
int | GetLegacyPageSize () const |
wxSQLite3CipherType | GetCipherType () const |
Get the type of this cipher instance. | |
bool | IsOk () const |
Check whether the cipher instance is valid. | |
Additional Inherited Members | |
Static Public Member Functions inherited from wxSQLite3Cipher | |
static const wxString | GetCipherName (wxSQLite3CipherType cipherType) |
Convert cipher type to string representation. | |
static wxSQLite3CipherType | GetCipherType (const wxString &cipherName) |
Convert string representation to cipher type. | |
static bool | SetCipher (wxSQLite3Database &db, wxSQLite3CipherType cipherType) |
Set the current cipher type for a database connection. | |
static bool | SetCipherDefault (wxSQLite3Database &db, wxSQLite3CipherType cipherType) |
Set the default cipher type for a database connection. | |
static wxSQLite3CipherType | GetCipher (wxSQLite3Database &db) |
Get the current cipher type of a database connection. | |
static wxSQLite3CipherType | GetCipherDefault (wxSQLite3Database &db) |
Get the default cipher type of a database connection. | |
static wxSQLite3CipherType | GetGlobalCipherDefault () |
Get the globally defined default cipher type. | |
static int | GetCipherParameterMin (const wxString &cipherName, const wxString ¶mName) |
Get minimum allowed cipher parameter value. | |
static int | GetCipherParameterMax (const wxString &cipherName, const wxString ¶mName) |
Get maximum allowed cipher parameter value. | |
Protected Member Functions inherited from wxSQLite3Cipher | |
wxSQLite3Cipher (wxSQLite3CipherType cipherType) | |
Constructor. | |
wxSQLite3Cipher (const wxSQLite3Cipher &cipher) | |
Copy constructor. | |
void | SetInitialized (bool initialized) |
Set initialization status of the cipher instance. | |
void | SetCipherType (wxSQLite3CipherType cipherType) |
Set type of the cipher instance. | |
Static Protected Member Functions inherited from wxSQLite3Cipher | |
static void * | GetDatabaseHandle (wxSQLite3Database &db) |
Get the SQLite3 database handle of a database instance. | |
Cipher class representing ChaCha20 encryption with Poly1305 HMAC.
wxSQLite3CipherChaCha20::wxSQLite3CipherChaCha20 | ( | ) |
Constructor.
wxSQLite3CipherChaCha20::wxSQLite3CipherChaCha20 | ( | const wxSQLite3CipherChaCha20 & | cipher | ) |
Copy constructor.
|
virtual |
Destructor.
|
virtual |
Reimplemented from wxSQLite3Cipher.
|
virtual |
Apply the cipher parameters to a database connection.
The parameters of the cipher instance are applied to the given database connection.
db | database instance representing a database connection |
Reimplemented from wxSQLite3Cipher.
|
inline |
Get iteration count of KDF function for ordinary key.
|
inline |
Get legacy mode.
|
virtual |
Initialize the cipher instance based on current settings.
The parameters of the cipher instance are initialize with the current settings of the associated cipher type as defined in the given database connection.
db | database instance representing a database connection |
Reimplemented from wxSQLite3Cipher.
|
virtual |
Initialize the cipher instance based on current default settings.
The parameters of the cipher instance are initialize with the current default settings of the associated cipher type as defined in the given database connection.
db | database instance representing a database connection |
Reimplemented from wxSQLite3Cipher.
|
virtual |
Initialize the cipher instance based on global default settings.
The parameters of the cipher instance are initialize with the global default settings of the associated cipher type.
Reimplemented from wxSQLite3Cipher.
|
inline |
Set iteration count of KDF function for ordinary key.
|
inline |
Set legacy mode.