Decryption Example
The following example shows how to define decryption actions for two columns using AES_CBC_PAD
and FPE
decryption:
{
"name" : "column2",
"action" : "DECRYPT",
"config" : [ {
"@type" : "AES_CBC_PAD",
"key" : "c2KeyName",
"iv":"000102030405060708090A0B0C0D0E0F"
} ]
}, {
"name" : "column3",
"action" : "DECRYPT",
"config" : [ {
"@type" : "FPE",
"key" : "c3KeyName",
"characterSet":"digits",
"tweak":"0102030405060708"
} ]
}