Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 1.32 KB

VerifyDataWithClassicKey.md

File metadata and controls

36 lines (30 loc) · 1.32 KB

Akeyless::VerifyDataWithClassicKey

Properties

Name Type Description Notes
data String Data
display_id String The display id of the key to use in the verification process [optional]
hashed Boolean Defines whether the data should be hashed as part of the signing. If true, the data will not be hashed [optional][default to false]
hashing_method String HashingMethod [optional][default to 'SHA256']
json Boolean Set output format to JSON [optional][default to false]
name String The name of the key to use in the verification process
signature String The data's signature in a Base64 format.
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 classic key version

Example

require 'akeyless'

instance = Akeyless::VerifyDataWithClassicKey.new(
  data: null,
  display_id: null,
  hashed: null,
  hashing_method: null,
  json: null,
  name: null,
  signature: null,
  token: null,
  uid_token: null,
  version: null
)