SqlColumnEncryptionCertificateStoreProvider.DecryptColumnEncryptionKey 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
열 암호화 키의 지정된 암호화된 값의 암호를 해독합니다. 암호화된 값은 지정된 키 경로를 포함한 인증서와 지정된 알고리즘을 사용하여 암호화되어야 합니다. 키 경로의 형식은 "Local Machine/My/<certificate_thumbprint>" 또는 "Current User/My/<certificate_thumbprint>"여야 합니다.
public:
override cli::array <System::Byte> ^ DecryptColumnEncryptionKey(System::String ^ masterKeyPath, System::String ^ encryptionAlgorithm, cli::array <System::Byte> ^ encryptedColumnEncryptionKey);
public override byte[] DecryptColumnEncryptionKey (string masterKeyPath, string encryptionAlgorithm, byte[] encryptedColumnEncryptionKey);
override this.DecryptColumnEncryptionKey : string * string * byte[] -> byte[]
Public Overrides Function DecryptColumnEncryptionKey (masterKeyPath As String, encryptionAlgorithm As String, encryptedColumnEncryptionKey As Byte()) As Byte()
매개 변수
- masterKeyPath
- String
마스터 키 경로입니다.
- encryptionAlgorithm
- String
암호화 알고리즘입니다. 현재 유효한 값은 다음과 같습니다. RSA_OAEP
- encryptedColumnEncryptionKey
- Byte[]
암호화된 열 암호화 키입니다.
반환
Byte[]
를 반환합니다 Byte . 암호 해독된 열 암호화 키입니다.