I have the following:

  • mcrypt installed
  • a file with a .zip.nc extension
  • a password

How do I use mcrypt to decrypt the file? The man page isn't very helpful.

I've tried

mcrypt -k password file.zip.nc > output

But nothing seems to be happening.

link|improve this question

25% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Try:

mcrypt -d file.zip.nc

You should then be prompted for your password and the file should decrypt.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.