/symmetric-decryption-encryption-using-python

simple example of symmetric algorthm cryption cipher with one key

Primary LanguagePython

End to End Encryption using Asymmetric & Symmetric Method

The Program will first Create Keys for both Method

  1. Symmetric Keys
  2. Private Keys
  3. Public Keys

Using RSA and Fernet.

The Program will first Encrypt the Message using Symmetric Key. After then, it will Encrypt the Symmetric Key using Public Key as Asymmetric Method.

To Decrypt the Message Sucessfully, It will use Private key to first Decrypt the Symmetric key. After Decryption, it will use Symmetric Decryption to decrypt the Message.