Sql精简版数据库在密码保护和加密后是否仍然可读?
Is Sql Compact Edition database still readable after password protection and encryption?
共 this page by Microsoft about Sql Compact Edition database encryption
The password does not prevent the reading of any data in the database file as clear text. By using both encryption and a password, you can store the data in an encrypted format and restrict programmatic access to the database.
所以,为了弄清楚.. 在密码保护和数据库加密之后,数据在某些方面可能仍然可读?唯一被阻止的是编程数据连接?
所以如果有人拥有这个加密和密码保护的数据库,he/she 可以读取其中的数据吗?这有什么意义?
谁能帮我解决这个问题?谢谢!
MSDN 文章指出,仅仅密码保护不足以防止某人打开数据库文件,例如文本编辑器并恢复存储的明文。
如果数据库是加密的(因此也有密码保护),不提供密码就不能恢复其内容(即打开数据库文件将仅显示 'scrambled' 文本)。
共 this page by Microsoft about Sql Compact Edition database encryption
The password does not prevent the reading of any data in the database file as clear text. By using both encryption and a password, you can store the data in an encrypted format and restrict programmatic access to the database.
所以,为了弄清楚.. 在密码保护和数据库加密之后,数据在某些方面可能仍然可读?唯一被阻止的是编程数据连接?
所以如果有人拥有这个加密和密码保护的数据库,he/she 可以读取其中的数据吗?这有什么意义?
谁能帮我解决这个问题?谢谢!
MSDN 文章指出,仅仅密码保护不足以防止某人打开数据库文件,例如文本编辑器并恢复存储的明文。 如果数据库是加密的(因此也有密码保护),不提供密码就不能恢复其内容(即打开数据库文件将仅显示 'scrambled' 文本)。