共用方式為


SqlColumnEncryptionCertificateStoreProvider.EncryptColumnEncryptionKey 方法

定義

使用憑證和指定的金鑰路徑並使用指定的演算法加密資料行加密金鑰。 機碼路徑的格式應該是 "Local Machine/My/<憑證指紋>" 或 "Current User/My/<憑證指紋>"。

public:
 override cli::array <System::Byte> ^ EncryptColumnEncryptionKey(System::String ^ masterKeyPath, System::String ^ encryptionAlgorithm, cli::array <System::Byte> ^ columnEncryptionKey);
public override byte[] EncryptColumnEncryptionKey (string masterKeyPath, string encryptionAlgorithm, byte[] columnEncryptionKey);
override this.EncryptColumnEncryptionKey : string * string * byte[] -> byte[]
Public Overrides Function EncryptColumnEncryptionKey (masterKeyPath As String, encryptionAlgorithm As String, columnEncryptionKey As Byte()) As Byte()

參數

masterKeyPath
String

主要金鑰路徑。

encryptionAlgorithm
String

加密演算法。 目前唯一有效的值為: RSA_OAEP

columnEncryptionKey
Byte[]

已加密的資料行加密金鑰。

傳回

Byte[]

傳回 Byte
已加密的資料行加密金鑰。

適用於