Skip to main content

Simple encryption and decryption for Python 3

Project description

What Does Simple Crypt Do?

Simple Crypt encrypts and decrypts data. It has two functions, encrypt and decrypt:

from simplecrypt import encrypt, decrypt
encrypted = encrypt('password', plaintext)
plaintext = decrypt('password', encrypted)

That’s it. You can see the implementation on github.

Why Should I Use Simple Crypt?

  • It uses standard, well-known algorithms, closely following the recommendations here.

  • It uses routines from the established pycrypto library (the cipher used is AES256).

  • It includes a check (an HMAC with SHA256) to warn when encrypted data are modified.

  • It tries to make things as secure as possible when poor quality passwords are used (PBKDF2 with SHA256, a 128 bit salt, and 10,000 rounds). But that doesn’t mean you should use a poor password!

  • Using a library, rather than writing your own code, means that we have less solutions to the same problem. That means more chance of finding bugs, which means more reliable, more secure code.

What Else Should I Know?

  • You must also install pycrypto.

  • The outputs from encrypt and decrypt are bytes. If you started with string input then you can convert the output from decrypt using .decode('utf8').

mystring = decrypt('password', encrypted).decode('utf8')

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

simple-crypt-0.1.7.tar.gz (5.8 kB view details)

Uploaded Source

File details

Details for the file simple-crypt-0.1.7.tar.gz.

File metadata

File hashes

Hashes for simple-crypt-0.1.7.tar.gz
Algorithm Hash digest
SHA256 654ccfbc24cb9e82284d46ede0dc218402612c1a74994d5ce6e5dc3e84a661fb
MD5 c92a02c486021f581cd8456ee867b5d9
BLAKE2b-256 c3774ba7521ad62c11c9a3a5e47a2a01b2c0374e6b4fa56e10d8a4895cc8d6fe

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page