Skip to content

CLI

The data module allows you to manage data with crypto keys created by Keyper{: target="_blank"}.

Encrypt and Decrypt Data

Encrypt and decrypt data can be as simple as two commands:

keyper data encrypt --key-id "<key-id>" --plaintext "<>"
# should return: Encrypted value: <...>
keyper data decrypt --key-id "<key-id>" --ciphertext "<>"
# should return: Decrypted value: <...>