Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我来自.NET 世界。
在 python 代码中,我有数据库连接字符串。有没有办法让这些连接字符串在 python 代码中加密?
可以通过保持配置加密来保护数据库配置或任何敏感配置。在 python 中,您可以使用secureconfig或encrypted-config或 DIY 之类的包和一些标准加密技术来实现。
secureconfig
encrypted-config
将加密密钥保留在外面是下一个挑战,您可以通过将其设置为注入配置来解决environmental variables这个问题command-line-parameter。
environmental variables
command-line-parameter