CRYPTO EXAMPLE WITH PYTHON RSA MODULE

encryption python

In this article we will talk about how you can encrypt using the RSA module in Python. It’s very simple to use. But to do this, the RSA module needs to be installed first. To do this, just type the following command.

Crypto with Python

After installing the module is very simple to use. Let’s look at this example.

  • 1.line : RSA module imported.
  • 3.line : the keys were generated for encryption with RSA module. Specifies the number of 512 bits here.
  • 7.line : encryption is done by encrypt method. The key is used when encryption is made.
  • 8.line : decrypt medou decrypted text. The key Generated when decrypting is used.

If we want, we can use the Cryptography algorithms we know. For example, let’s encrypt a text with sha512. Therefore

We use the sign method for this method. To be able to encrypt with SHA-512, the bit length must be at least 752.
much more detailed information about the RSA module http://stuvel.eu/rsa you can find it at http://stuvel.eu/rsa

https://www.kalogroup.com.au/