Encryption 如何在Dynamics CRM 2015中进行列级加密?

Encryption 如何在Dynamics CRM 2015中进行列级加密?,encryption,sql-server-2012,dynamics-crm-2015,Encryption,Sql Server 2012,Dynamics Crm 2015,我知道Dynamics CRM 2015为特定字段提供了加密功能 EmailServerProfile IncomingPassword EmailServerProfile OutgoingPassword Mailbox Password Queue EmailPassword UserSettings EmailPassword 我想使用内置的加密功能来加密自定义字段(列)。我的CRM实例已启用SSL和数据加密 我该怎

我知道Dynamics CRM 2015为特定字段提供了加密功能

EmailServerProfile  IncomingPassword
EmailServerProfile  OutgoingPassword
Mailbox             Password
Queue               EmailPassword
UserSettings        EmailPassword
我想使用内置的加密功能来加密自定义字段(列)。我的CRM实例已启用SSL和数据加密

我该怎么做

编辑:查询以查找加密列

SELECT [TableColumnName], [IsEncrypted]
  FROM [Our_Organization].[MetadataSchema].[Attribute]
  WHERE IsEncrypted = 1

我没有看到任何东西说您可以加密自定义字段,所以我认为答案是“不”。

这很奇怪。在
MetadataSchema
表中,有一个字段
IsEncrypted
。这篇文章也没有关于加密的详细信息。是的,但据我所知还没有自定义字段。