Ansible Vault Encryption / Decryption Tool
Upload the file you want to encrypt/decrypt.

Welcome,

This is a simple online Ansible Vault encryption/decryption tool. You may encrypt or decrypt any information using online interface or api tools provided.


Important: We do not use, store or log the data you encrypt or decrypt.


This is an open source project. The source code could be found at https://github.com/fbraz3/ansible-vault-tool

API Request Example (Encrypt)

ansible-vault.braz.dev/api

POST Data:
{
  "action": "encrypt",
  "content": "information to be encrypted by ansible vault",
  "passphrase": "test"
}

Response Data:
{
  "result": "$ANSIBLE_VAULT;1.1;AES256\n32393430393531343931666361643831656232336361346331663439376662353735646230316631\n3165663238306636336463393631636633313537343635320a656164653836353933373866616339\n37376561663666323738383839316562313632346365613962323562633538323630653735613264\n6432343766326532650a376538623831356330383265313034326630343434343635343061613730\n36636239646162643762653135636632363762313763383766303061363630333165656430633662\n6635353763666130396339363732643062326336336336623036",
  "status": "success",
  "msg": "Your data was successfully encrypted!"
}
API Request Example (Decrypt)

ansible-vault.braz.dev/api

Post Data:
{
  "action": "decrypt",
  "content": "$ANSIBLE_VAULT;1.1;AES256\n32393430393531343931666361643831656232336361346331663439376662353735646230316631\n3165663238306636336463393631636633313537343635320a656164653836353933373866616339\n37376561663666323738383839316562313632346365613962323562633538323630653735613264\n6432343766326532650a376538623831356330383265313034326630343434343635343061613730\n36636239646162643762653135636632363762313763383766303061363630333165656430633662\n6635353763666130396339363732643062326336336336623036",
  "passphrase": "test"
}


Response Data:
{
  "result": "information to be encrypted by ansible vault",
  "status": "success",
  "msg": "Your data was successfully decrypted!"
}