Skip to content Skip to sidebar Skip to footer

Python: How To Encrypt A File?

Can anybody help(or point to some examples) about how to encrypt files with python? I have to use following parameters to encrypt file: block size=8 iv=qwertyui12345678 method=des3

Solution 1:

You will need to use the Python Crypto Toolkit

IV is the Initialisation Vector.

Solution 2:

Use pycrypto - note that implmenting crypto properly, even using a library for the hard parts, is tricky. If security matters get expert help.

Solution 3:

IV stands for Initialization Vector. Block cipher algorithms can be used in several operational modes; one of these modes is called CBC (Cipher-Block Chaining), in this mode the plain text block is XORed with the encrypted previous block. The IV is XORed with the initial plain text block. The IV can be see as an algorithm parameter.

A more detailed description can be read here.

Post a Comment for "Python: How To Encrypt A File?"