I see that the various articles on SQL Server 2016's Always Encrypted feature describe creating the column encryption key using either SQL Server Management Studio UI or by using the New-SqlColumnEncryptionKey powershell command. But what if the C# client application itself wants to create the column encryption key? What is the format of this ENCRYPTED_VALUE
column?
CREATE COLUMN ENCRYPTION KEY CEK1
WITH VALUES (
COLUMN_MASTER_KEY = CMK1,
ALGORITHM = 'RSA_OAEP',
ENCRYPTED_VALUE = ??????