SqlColumnEncryptionCertificateStoreProvider.EncryptColumnEncryptionKey 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 키 경로를 포함한 인증서와 지정된 알고리즘을 사용하여 열 암호화 키를 암호화합니다. 키 경로의 형식은 "Local Machine/My/<certificate_thumbprint>" 또는 "Current User/My/<certificate_thumbprint>"여야 합니다.
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 . 암호화된 열 암호화 키입니다.