4

Is there a way to use python to encrypt/decrypt a file (something like Axcrypt)?

skeletank
  • 2,880
  • 5
  • 43
  • 75
Gary
  • 129
  • 1
  • 11

4 Answers4

1

How about this SO Q&A, which talks about encrypting/decrypting with PGP?

Community
  • 1
  • 1
cape1232
  • 999
  • 6
  • 21
0

Go here in the python docs for modules available for encryption: http://docs.python.org/library/crypto.html

Ashley Grenon
  • 9,305
  • 4
  • 41
  • 54
0

You can try this for encrypting as well as decrypting..

#!/usr/bin/env python2.7
# -*- coding: utf-8 -*-
import nacl.secret
import nacl.utils
import base64
from pyblake2 import blake2b
import getpass

print "### ENCRYPTION"
key = blake2b(digest_size=16)
key.update(getpass.getpass("PASSWORD:"))
key = key.hexdigest()

print "key: %s" % key
box = nacl.secret.SecretBox(key)

# This is our message to send, it must be a bytestring as SecretBox will
#   treat is as just a binary blob of data.
msg = b"whohooäööppöööo"
print "msg: %s" % msg
nonce = nacl.utils.random(nacl.secret.SecretBox.NONCE_SIZE)
print "nonce: %s" % nacl.encoding.HexEncoder.encode(nonce)
encrypted = box.encrypt(msg, nonce, encoder=nacl.encoding.HexEncoder)
print "cipher: %s " % encrypted

print "### DECRYPTION"
key = blake2b(digest_size=16)
key.update(getpass.getpass("PASSWORD:"))
key = key.hexdigest()

nonce = None
print "nonce: %s" % nonce
print "key: %s" % key
box = nacl.secret.SecretBox(key)

msg = encrypted
print "msg: %s" % msg

plain = box.decrypt(ciphertext=msg,encoder=nacl.encoding.HexEncoder)
print "plain: %s" % plain
pri
  • 104
  • 1
  • 8