An open API service indexing awesome lists of open source software.

https://github.com/jacoblightning/encrypt64

Cryptography Features.
https://github.com/jacoblightning/encrypt64

Last synced: 10 months ago
JSON representation

Cryptography Features.

Awesome Lists containing this project

README

          

# EnCrypt
    Cryptography Features.
    Stores encryption in two ways. One is written to a file and the other is returned.
# Usage :sunglasses:
    `encrypted_string = encrypt.MAXIMUM_ENCRYPT(string_to_be_encrypted, filename) # filename for saved file`
    `print(encrypted_string)`

**OUTPUT**:
something like:
b'gAAAAABjFi_ctHNov4f8anfqh-aYGDqvB92Hm5WG1ujEI0YpVj3AEkwbJbvAh75z8md4E4JTfiVJ47vgNzcLEqadwFvJHluaZlpIUM-sSvwEQSVwLBGtoQ0='

    `decrypted_string = encrypt.MAXIMUM_DECRYPT(byte_string_to_be_decrypted, same_filename) # filename for saved file`
    `print(decrypted_string)`