Skip to main content

Data encryption

This tool allows you to encrypt and decrypt data with OpenSSL methods.

Decrypt data​

Analytics config

Analytics config

Input parameters​

SectionParametersUsageMandatory
DataEncrypted dataThe encrypted data that you want to decrypt.No
Cipher TypeBlock cipher lets you choose the encryption algorithm.No
Block CipherCipher KeyThe key which the data was encrypted. If you choose not to Hash the key, The length should be for BLOWFISH 56 bytes, for AES and CAMELLIA 32 bytes, for CAST5 and SEED 16 bytes and for DES a 8 bytes length string.No
Cipher Salt (IV)If you leave it blank, a random salt will be generated. AES, CAMELLIA and SEED need a 16 bytes length string. BLOWFISH, DES and CAST5 need a 8 bytes length string.No
Cipher MethodThe method that was used to encrypt the data. AES uses AES-256 and CAMELLIA uses CAMELLIA-256.No
Cipher ModeThe mode of the cipher method used to decrypt. CBC is the most common one.No
Hash MethodThe function used to hash the Cipher Key. Choose β€œNone”, if you know that the key was not hashed.No
Output formatThe format in which the data was encrypted.No

Response parameters​

ParameterUsage
resultThe decrypted string.
errorThis field will contain an error message if the decryption fails.

Encrypt data​

Analytics config

Analytics config

Input parameters​

SectionParametersUsageMandatory
DataData to encryptThe data that you want to encrypt.No
Cipher TypeBlock cipher lets you choose the encryption algorithm.No
Block CipherCipher KeyYour secret key to encrypt the data. If you choose not to Hash the key, The length should be for BLOWFISH 56 bytes, for AES and CAMELLIA 32 bytes, for CAST5 and SEED 16 bytes and for DES a 8 bytes length string.No
Cipher Salt (IV)If you leave it blank, a random salt will be generated. AES, CAMELLIA and SEED need a 16 bytes length string. BLOWFISH, DES and CAST5 need a 8 bytes length string.No
Cipher MethodThe method used to encrypt. AES uses AES-256 and CAMELLIA uses CAMELLIA-256.No
Cipher ModeThe mode of the cipher method used to encrypt. CBC is the most common one.No
Hash MethodThe function used to hash the Cipher Key. If you choose β€œNone”, the key won’t be hashed.No
Output formatThe format in which you want the data encrypted.No

Response parameters​

ParameterUsage
resultThe encrypted string.
errorThis field will contain an error message if the encryption fails.