Does Encrypted Stage listener support IV and key generated by Openssl in hex ? #1081
Unanswered
Krishna8009
asked this question in
Q&A
Replies: 1 comment 1 reply
-
If you want to use the key and IV generated by OpenSSL for AES-CBC-128 encryption, you can use the -K and -iv options of the openssl enc command to specify the key and IV values in hexadecimal notation. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Openssl generates key and IV as hex of 32 bytes for AES-CBC-128. I am using command
openssl enc -aes-128-cbc -p -k somesecret -nosalt
. The Hex IV will convert to 16 bytes in decimal notation as per my understanding.However in documentation i see a decimal notation IV of 16 bytes. Please can you tell me what should i do if i want to use openssl generated IV and Key or if i can generate keys with some alternative tools so that it works with the stage listener ?
Beta Was this translation helpful? Give feedback.
All reactions