Using Single Key Encryption¶
ESB Micro Integrator uses asymmetric encryption by default, which means that a key pair (public key and private key) for encrypting/decrypting information. If required, you can switch to single key encryption (symmetric encryption), which means that a single key will be shared for encryption and decryption of information.
Enable single key encryption¶
To enable symmetric encryption, open the deployment.toml file and add the following configurations:
[encryption]
key = "value"
Encrypt the symmetric key¶
For better security, the symmetric key in the deployment.toml file should be encrypted. See Encrypting Passwords to replace this key with an encrypted value.
Top