Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.26 KB

DecryptPKCS1.md

File metadata and controls

34 lines (28 loc) · 1.26 KB

Akeyless::DecryptPKCS1

Properties

Name Type Description Notes
ciphertext String Ciphertext to be decrypted in base64 encoded format
display_id String The display id of the key to use in the decryption process [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]

Example

require 'akeyless'

instance = Akeyless::DecryptPKCS1.new(
  ciphertext: null,
  display_id: null,
  item_id: null,
  json: null,
  key_name: null,
  output_format: null,
  token: null,
  uid_token: null,
  version: null
)