Skip to content

Latest commit

 

History

History
40 lines (34 loc) · 1.57 KB

VerifyPKCS1.md

File metadata and controls

40 lines (34 loc) · 1.57 KB

Akeyless::VerifyPKCS1

Properties

Name Type Description Notes
display_id String The display id of the key to use in the verification process [optional]
hash_function String HashFunction defines the hash function (e.g. sha-256) [optional]
input_format String Select default assumed format for the plaintext message. Currently supported options: [base64] [optional]
item_id Integer The item id of the key to use in the verification process [optional]
json Boolean Set output format to JSON [optional][default to false]
key_name String The name of the RSA key to use in the verification process
message String The message to be verified
prehashed Boolean Markes that the message is already hashed [optional]
signature String The message's signature
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 The version of the key to use for verification [optional]

Example

require 'akeyless'

instance = Akeyless::VerifyPKCS1.new(
  display_id: null,
  hash_function: null,
  input_format: null,
  item_id: null,
  json: null,
  key_name: null,
  message: null,
  prehashed: null,
  signature: null,
  token: null,
  uid_token: null,
  version: null
)