I have a file encrypted with openssl via:
openssl rand 32 -out key
openssl enc -aes-256-cbc -in input.json -out input.json.enc -pass file:key
How can I decrypt it in C#? Tried AesManaged with no luck.
I have a file encrypted with openssl via:
openssl rand 32 -out key
openssl enc -aes-256-cbc -in input.json -out input.json.enc -pass file:key
How can I decrypt it in C#? Tried AesManaged with no luck.