Name |
Type |
Description |
Notes |
ciphertext |
String |
Ciphertext to be decrypted in base64 encoded format |
[optional] |
display_id |
String |
The display id of the key to use in the decryption process |
[optional] |
encryption_context |
Hash<String, String> |
The encryption context. If this was specified in the encrypt command, it must be specified here or the decryption operation will fail |
[optional] |
item_id |
Integer |
The item id of the key to use in the decryption process |
[optional] |
json |
Boolean |
Set output format to JSON |
[optional][default to false] |
key_name |
String |
The name of the key to use in the decryption process |
|
output_format |
String |
If specified, the output will be formatted accordingly. options: [base64] |
[optional] |
token |
String |
Authentication token (see `/auth` and `/configure`) |
[optional] |
uid_token |
String |
The universal identity token, Required only for universal_identity authentication |
[optional] |
version |
Integer |
key version (relevant only for classic key) |
[optional] |
require 'akeyless'
instance = Akeyless::Decrypt.new(
ciphertext: null,
display_id: null,
encryption_context: null,
item_id: null,
json: null,
key_name: null,
output_format: null,
token: null,
uid_token: null,
version: null
)