惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Forbes - Security
Forbes - Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
L
LangChain Blog
量子位
GbyAI
GbyAI
B
Blog RSS Feed
月光博客
月光博客
人人都是产品经理
人人都是产品经理
腾讯CDC
Recent Announcements
Recent Announcements
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
The Cloudflare Blog
D
Docker
Cyberwarzone
Cyberwarzone
U
Unit 42
NISL@THU
NISL@THU
C
Check Point Blog
B
Blog
大猫的无限游戏
大猫的无限游戏
Cisco Talos Blog
Cisco Talos Blog
Recorded Future
Recorded Future
H
Hackread – Cybersecurity News, Data Breaches, AI and More
J
Java Code Geeks
G
GRAHAM CLULEY
Engineering at Meta
Engineering at Meta
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
P
Proofpoint News Feed
F
Fortinet All Blogs
V
V2EX
T
Threat Research - Cisco Blogs
T
Threatpost
S
SegmentFault 最新的问题
Know Your Adversary
Know Your Adversary
雷峰网
雷峰网
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
博客园 - 司徒正美
P
Privacy & Cybersecurity Law Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
TaoSecurity Blog
TaoSecurity Blog
Latest news
Latest news
Apple Machine Learning Research
Apple Machine Learning Research
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Y
Y Combinator Blog
P
Privacy International News Feed
L
Lohrmann on Cybersecurity
AWS News Blog
AWS News Blog
G
Google Developers Blog
美团技术团队

博客园 - NetCobra

近况 让TortoiseSVN使用类似TortoiseCVS的文件冲突解决方式 CSDN双雄——universee(太极语言)和Sinox(汉澳操作系统) The Netron project down, Netron Reloaded... 推荐一个开源项目和一个免费工具 Windows平台下使用Active Directory对Subversion进行权限控制(非完美解决方案) DotNet 项目中链接文件的用处 看看美国的烂公司是怎么样的烂法 对软件的多语言化方法的一点看法 最近工作情况 关于 zjsflyer 对 JPgraph 中文显示乱码问题的回复 [旧文]来自 Borcon2003 中国开发者大会的现场报道 [问题]DotNet 项目如何实现在构建时 Build 号自动增加? 每日构建中的两个问题 如何防止 Wiki 被恶意篡改? [翻译] NMock 两分钟教程 [翻译] NMock 简介 头疼的问题:NAnt 的 cvs-checkout 任务无法执行 可以下载 Delphi 2005 试用版了
SQLite 不能加密?
NetCobra · 2005-04-08 · via 博客园 - NetCobra

公司的一个项目打算采用 Smart Client 来实现,出于提高速度的目的,打算在本地缓存一部分基本信息数据,数据量不大,而且仅仅用于查询,除了数据更新不会有大量的更新操作,所以就不打算采用 MySQL、MSDE 之类的大家伙;第一个想到的是 Access,但是 Access 数据库的安全性实在太差;另一个是使用 XML 文件,但是这样就需要对XML文件内容进行加密,不知道效率和查询方便性如何;另外就是开源的嵌入式数据库,比如 SQLite;


于是把 SQLite 的一堆东西下载下来看了看,建表、添加数据都很简单,也有 .Net 的驱动程序,看上去一切都很完美——不过,怎么对数据库加密码呢?


开动 Google,找了半天,找到这么一个结果:http://article.gmane.org/gmane.comp.db.sqlite.general/11374,第二个回复里写的:
>>if you send Dr. Hipp money you can get a version that is protected by a password. It seems like an equitable trade, with everybody happy in the end.

看来想免费加密是没戏啦。

>>If your data is valuable enough to be worth somebody's time to steal, I think it should be valuable enough for you to protect it properly.

这话是没错,不过,不过,俺还是想找一个能免费使用的,可以比较好地加密地数据库……