将Botan加密与botansqlite3一起使用时,性能的最佳配置设置是什么?

要么

如何配置Botansqlite3以使用CAST5?

我目前正在使用AES,而且速度太慢。我的用例是游戏。

我正在寻找弱或中等程度的加密来保护我的游戏数据(而不是最终用户数据),因此安全性不是性能而是考虑因素。

这是我当前的BotanSqlite3 codec.h

/*These constants can be used to tweak the codec behavior as follows */

//BLOCK_CIPHER_STR: Cipher and mode used for encrypting the database
//make sure to add "/NoPadding" for modes that use padding schemes
const string BLOCK_CIPHER_STR = "Twofish/XTS";

//PBKDF_STR: Key derivation function used to derive both the encryption
//and IV derivation keys from the given database passphrase
const string PBKDF_STR = "PBKDF2(SHA-160)";

//SALT_STR: Hard coded salt used to derive the key from the passphrase.
const string SALT_STR = "&g#nB'9]";

//SALT_SIZE: Size of the salt in bytes (as given in SALT_STR)
const int SALT_SIZE = 64/8; //64 bit, 8 byte salt

//MAC_STR: CMAC used to derive the IV that is used for db page
//encryption
const string MAC_STR = "CMAC(Twofish)";

//PBKDF_ITERATIONS: Number of hash iterations used in the key derivation
//process.
const int PBKDF_ITERATIONS = 10000;

//KEY_SIZE: Size of the encryption key. Note that XTS splits the key
//between two ciphers, so if you're using XTS, double the intended key
//size. (ie, "AES-128/XTS" should have a 256 bit KEY_SIZE)
const int KEY_SIZE = 512/8; //512 bit, 64 byte key. (256 bit XTS key)

//IV_DERIVATION_KEY_SIZE: Size of the key used with the CMAC (MAC_STR)
//above.
const int IV_DERIVATION_KEY_SIZE = 256/8; //256 bit, 32 byte key

//This is definited in sqlite.h and very unlikely to change
#define SQLITE_MAX_PAGE_SIZE 32768

我相信我需要找到BLOCK_CIPHER_STR,PBKDF_STR,MAC_STR,KEY_SIZE和IV_DERIVATION_KEY_SIZE的替代品,以重新配置BotanSqlite3以使用其他编解码器。

我在这里找到了Botan编解码器性能的广泛比较测试:
http://panthema.net/2008/0714-cryptography-speedtest-comparison/crypto-speedtest-0.1/results/cpu-sidebyside-comparison-3x2.pdf#page=5

但是,测试是直接用Botan完成的,而不是我打算使用的botansqlite3。从性能 Angular 看图表,一个不错的选择是CAST5。
  • 有问题的数据库为300KB,主要是带有一些文本 Blob 的INTEGER字段。
  • 我正在使用botansqlite3成名的OlivierJG建议配置Botan,使用合并

    './configure.py --no-autoload --enable-modules = twofish,xts,pbkdf2,cmac,sha1 --gen-amalgamation --cc = msvc --os = win32 --cpu = x86 --disable-共享--disable-asm'

  • 引用文献:

    http://github.com/OlivierJG/botansqlite3-botansqlite3是SQLite3的加密编解码器,可以使用Botan中的任何算法进行加密

    http://www.sqlite.org-sqlite3是跨平台的SQL数据库

    http://botan.randombit.net/-botan是一个C++加密库,支持多种编解码器

    最佳答案

    您可以使CAST-128(或我所说的CAST5)正常工作,这是一个分组密码。

    最好的选择是上面的密钥大小配置不同。

    Twofish非常快。

    感谢“Olivier JG”提供的所有出色代码。

    关于c++ - Botan中最高性能的SQLite加密编解码器是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19388930/

    10-09 06:16