Skip to content

Files

Latest commit

cb9b4cb · Feb 13, 2023

History

History
28 lines (22 loc) · 874 Bytes

Tokenize.md

File metadata and controls

28 lines (22 loc) · 874 Bytes

Akeyless::Tokenize

Properties

Name Type Description Notes
json Boolean Set output format to JSON [optional][default to false]
plaintext String Data to be encrypted
token String Authentication token (see `/auth` and `/configure`) [optional]
tokenizer_name String The name of the tokenizer to use in the encryption process
tweak String Base64 encoded tweak for vaultless encryption [optional]
uid_token String The universal identity token, Required only for universal_identity authentication [optional]

Example

require 'akeyless'

instance = Akeyless::Tokenize.new(
  json: null,
  plaintext: null,
  token: null,
  tokenizer_name: null,
  tweak: null,
  uid_token: null
)