gpt4 book ai didi

python - 将 pysqlcipher 与 SqlAlchemy 一起使用?

转载 作者:太空狗 更新时间:2023-10-30 01:14:28 25 4
gpt4 key购买 nike

我正在尝试向我的程序添加一些代码来加密我使用的 sqlite 数据库。我正在尝试提示用户输入密码,并使用该密码创建一个新的加密数据库(如果它不存在),或者解密并加载现有的数据库。似乎没有太多我能找到的文档,而且我不确定该怎么做。我的代码如下:

if encryption is True:
print("***PYPER TIMESHEET UTILITY***")
print("\nEnter encryption password below:")
key = getpass.getpass()
DB_NAME = ".timesheet.db"
engine = create_engine('sqlite:///{}'.format(DB_NAME), module=sqlite)

else:

print("WARNING: Unencrypted session. Install pysqlcipher3 to enable encryption\n")
DB_NAME = ".timesheet.db?cipher=aes-256-cfb&kdf_iter=64000"
engine = create_engine('sqlite:///{}'.format(DB_NAME))
DBSession = sessionmaker(bind=engine)
session = DBSession()

编辑:忘记提供更多信息。

我试过了 what's listed at sqlalchemy .在上面的示例中,我意识到我遗漏了重要的一行,

from pysqlcipher import dbapi 2 as sqlite

Link to full code

最佳答案

您忘记将 key 包含到您的数据库连接中,如示例所述:

'sqlite+pysqlcipher://:testing@/foo.db?cipher=aes-256-cfb&kdf_iter=64000'

(例子中的key是"testing"),所以在得到key之后试试这个:

engine = create_engine(
'sqlite+pysqlcipher://:{0}@/{1}?'
'cipher=aes-256-cfb&kdf_iter=64000'.format(key, DB_NAME))

关于python - 将 pysqlcipher 与 SqlAlchemy 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30314882/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com