I have define a leaf of type tailf:aes-cfb-128-encrypted-string as below and if I get the data via rest-conf , its coming in encrypted format. Is there any parameter to get the decrypted value in the restconf response?
leaf encmsg {
type tailf:aes-cfb-128-encrypted-string;
mandatory true;
}
below is the rest-conf response I am getting, can I get the response automatically decrypted?.
{
"encmsg": "$8$unGUudm/83Z4C3lP01Rb4RPLNSRXhGFZyDl4K3tD+QA="
}