实体框架是否支持加密

发布于 2024-12-06 09:25:01 字数 149 浏览 1 评论 0原文

我使用 SQLite 作为数据库和实体框架来设计我的数据库结构。 需要一个信息。实体框架是否支持数据库中特定列的“加密”。 例如:如果我有一个表 T1,其中有 2 列 C1 和 C2。现在,如果我需要加密存储在 C2 中的数据,那么实体框架允许我这样做吗?

提前致谢。

i am using SQLite as the database and Entity Framework to design my database structure.
Needed an info. Does Entity Framework support "Encryption" of a particular column in the database.
Eg: If i have a table T1 with 2 columns C1 and C2. Now if i need to encrypt the data that i stored in C2, then does Entity Framework allows me to do so?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心是晴朗的。 2024-12-13 09:25:01

EF 不直接处理加密。您可以在数据库级别启用加密(我认为 SQLite 在这方面有所欠缺),或者您可以在使用 EF 将数据保存到数据库之前对数据进行预加密。

我想说在数据库级别启用加密是最好的选择(也是出于性能原因),我知道 SQL CE 支持它,但不确定 SQLite。如果没有,您可以在将数据放入数据库之前轻松加密并将其存储为二进制数据。然后用EF就可以轻松获取byte[]了。

EF does not directly handle encryption. You'll either enable encryption at the DB level, where I think that SQLite is somewhat lacking in that respect, or you'll have pre-encrypt the data before you persist it to the database using EF.

I would say enabling encryption at the DB level is the best option (also for performance reasons) and I know that SQL CE has support for it but not sure about SQLite. If not, you could easily encrypt before putting data into the database and store it as binary data. Then you can easily get the byte[] with EF.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文