I'm receiving from a counterpart encrypted .csv files.
I can successfully decrypt those using open ssl and the following command:
openssl enc -d -aes-128-cbc -K my_key –iv my_iv -in input_file.csv -out output_file.csv
I'm trying to do the same in python so that I can deploy that to my app (AWS Lambda) but I haven't found anything related to such a thing in SO, which really surprises me since this looks such a basic case to me.
I've found pycrypto, and other module but nothing seems to concern my case.
Would you have any idea ?
Thanks
question from:https://stackoverflow.com/questions/65950466/python-decrypt-csv-file-with-openssl