New-SqlCngColumnMasterKeySettings

创建一个 SqlColumnMasterKeySettings 对象,该对象描述存储在支持 CNG API 的密钥存储中的非对称密钥。

语法

New-SqlCngColumnMasterKeySettings
   [-CngProviderName] <String>
   [-KeyName] <String>
   [-ProgressAction <ActionPreference>]
   [<CommonParameters>]

说明

New-SqlCngColumnMasterKeySettings cmdlet 创建 SqlColumnMasterKeySettings 对象。 SqlColumnMasterKeySettings 对象引用密钥,该密钥存储在支持下一代加密 (CNG) API 的密钥存储中。 SqlColumnMasterKeySettings 对象具有两个属性:KeyStoreProviderNameKeyPath。 此 cmdlet 将 KeyStoreProviderName 属性设置为包含 CNG 列主密钥存储提供程序的名称,然后生成并设置 KeyPath 属性的值以引用指定的键。

示例

示例 1:创建 SqlColumnMasterKeySettings 对象

PS C:\> $CMKSettings = New-SqlCngColumnMasterKeySettings -CngProviderName "Microsoft Software Key Storage Provider" -KeyName "AlwaysEncryptedKey"

此命令创建一个 SqlColumnMasterKeySettings 对象,该对象引用由名为Microsoft软件密钥存储提供程序的 CNG 提供程序封装的密钥存储中的密钥。 然后,该命令将操作的结果存储在名为 $CMKSettings的变量中。

参数

-CngProviderName

指定密钥存储的 CNG 提供程序的名称。

类型:String
Position:0
默认值:None
必需:True
接受管道输入:False
接受通配符:False

-KeyName

指定密钥存储区中的密钥的名称。

类型:String
Position:1
默认值:None
必需:True
接受管道输入:False
接受通配符:False

-ProgressAction

确定 PowerShell 如何响应脚本、cmdlet 或提供程序生成的进度更新,例如由 Write-Progress cmdlet 生成的进度栏。 Write-Progress cmdlet 创建显示命令状态的进度栏。

类型:ActionPreference
别名:proga
Position:Named
默认值:None
必需:False
接受管道输入:False
接受通配符:False

输出

SqlColumnMasterKeySettings