About 5,300,000 results
Open links in new tab
  1. How do I encrypt and decrypt a string in python? - Stack Overflow

    Dec 7, 2014 · I have been looking for sometime on how to encrypt and decrypt a string. But most of it is in 2.7 and anything that is using 3.2 is not letting me print it or add it to a string. So what I'm tryin...

  2. How to do PGP in Python (generate keys, encrypt/decrypt)

    So I need to find a Python library that will let me generate public and private PGP keys, and also decrypt files encrypted with the public key. Is this something pyCrypto will do (documentation is nebulous)? …

  3. Encrypt and decrypt using PyCrypto AES-256 - Stack Overflow

    Encryption and decryption of Latin and special characters (Chinese) using AES-256 with utf8mb4: For those who need to encrypt and decrypt Latin and special values, such as Chinese, here is a …

  4. How to encrypt text with a password in python? - Stack Overflow

    Mar 3, 2017 · Is there a simple way to achieve this with python and please can someone provide/direct me to an example. Perhaps an example of how to create public/private key pairs using a seed such …

  5. encryption - Python's safest method to store and retrieve passwords ...

    Python's safest method to store and retrieve passwords from a database Asked 15 years, 8 months ago Modified 4 years, 3 months ago Viewed 64k times

  6. encryption - simple encrypt/decrypt lib in python with private key ...

    simple encrypt/decrypt lib in python with private key Asked 15 years, 2 months ago Modified 4 years, 9 months ago Viewed 57k times

  7. Encrypt / decrypt data in python with salt - Stack Overflow

    Sep 6, 2016 · I'd like to know basically how can I encrypt data with a generated salt key and then decrypt it using python ? i've gone trough a lot of websites and modules, and they all look great at …

  8. Implement OpenSSL AES Encryption in Python - Stack Overflow

    AES-256 decryption and encryption in CBC mode are supported by both PyCrypto and M2Crypto. The only non-standard (and most difficult) part is the derivation of the IV and the key from the password. …

  9. Recommended Python cryptographic module? - Stack Overflow

    I've been exploring what cryptographic modules are available to Python, and I've found 3: ezPyCrypt, yawPyCrypt and KeyCzar (which actually supports a few languages, but Python is included amongst ...

  10. encryption - How AES in CTR works for Python with PyCrypto? - Stack ...

    I am using python 2.7.1 I want to encrypt sth using AES in CTR mode. I installed PyCrypto library for python. I wrote the following code: secret = os.urandom(16) crypto = AES.new(os.urandom(32), AES.