import io import os import struct import tempfile from Crypto.Cipher import AES def encrypt_file(key, in_file, out_file=None, chunksize=64 * 1024): """ Encrypts a file using AES (CBC mode) with the given key. key: The encryption key - a string that must be either 16, 24 or 32 bytes long. Longer keys are more secure. in_file: Name of the input file out_file: If None, '.enc' will be used. chunksize: Sets the size of the chunk which the function uses to read and encrypt the file. Larger chunk sizes can be faster for some files and machines. chunksize must be divisible by 16. """ if not out_file: out_file = in_file + '.enc' cipher = AES.new(key, AES.MODE_CBC) if type(in_file) is str: filesize = os.path.getsize(in_file) infile = open(in_file, 'rb') elif type(in_file) is io.BufferedRandom or tempfile.SpooledTemporaryFile: in_file.seek(0, 2) filesize = in_file.tell() in_file.seek(0) infile = in_file else: print("Unable to encrypt " + str(in_file) + " of type " + str(type(in_file))) return with open(out_file, 'wb') as outfile: outfile.write(struct.pack('