问题
I'm trying to decrypt Bloomberg data files that I know are DES encrypted.
FileName = 'comdty_option_namr.out.gz.enc'
What is the right order to do things: Open the file and decompress and then decrypt or vice-versa?
回答1:
Well, it all depends on the way the file was transformed, and there are two possible ways (in your case is #1):
- first create the zip, then encrypt the zip
- first encrypt the file, then zip it
The extension of the file tells you the order of operations, by reading them from left to right:
comdty_option_namr.out
is the name of the file- the file got
gzipped
, thus getting tocomdty_option_namr.out.gz
- after which the
gzip
archive to encrypted, resulting the filecomdty_option_namr.out.gz.enc
来源:https://stackoverflow.com/questions/29741887/what-should-i-do-first-decrypt-or-decompress-python