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.
Azure SQL Server 默认提供透明数据加密 (TDE),只需轻按一下虚拟开关即可:
没有选择算法的选项,我没有使用“自带密钥”。
正在使用哪种加密算法,密钥长度是多少?
我发现的所有文章,例如这篇文章和这篇文章,都相互循环引用,没有明确的答案。
如果在 SQL Azure 数据库中运行它
select * from sys.dm_database_encryption_keys
您应该看到正在使用的加密算法和密钥长度。
在我的情况下,我在我的一个数据库中启用了 TDE,我可以看到 key_algorithm 是 AES,而 key_lenght 是 256。
它是AES 256
请参阅这篇文章: https ://docs.microsoft.com/en-us/azure/sql-database/transparent-data-encryption-azure-sql?tabs=azure-portal