Python library for encryption


Keywords
encryption, decryption
License
MIT
Install
pip install riddle==2020.7.26

Documentation

Riddle

Riddle is a Python library for encryption.

Installation

pip install riddle

Usage

Riddle

from riddle import Riddle
riddle = Riddle(key=1245)
encrypted = riddle.encrypt(obj=['Hello World!', 123])
print('Encrypted:\n\n', encrypted, '\n\n')
decrypted = riddle.decrypt(encrypted)
print('Decrypted:\n\n', decrypted)

produces:

Encrypted:

wpLCr8OCfFjDjcKowqnDqcOFbcKYwrXDmcOXeMK6woZuwpVbw47DpMKiQ8OHwpnCr8Khw5XDpcKVw43Dm8Kdwr_Cq3N5wrrCokDCpsKJwpt1woXCmFjDmMOFwo7Cp8KIwoHCgcKNwprCocKhf8KKwpdobMKSwqTCpG_CosKGVMKWwpc=

Decrypted:

['Hello World!', 123]

SecretKeeper

from riddle import SecretKeeper
from pandas import DataFrame

data = DataFrame({
    'name': ['John', 'Jack', 'Joe'], 
    'age': [12, 13, 14], 
    'random': [[1,2,3], [1,2,3], [1]]
})

data['age_divided_by_ten'] = data['age'] / 10

keeper = SecretKeeper()

anonymized_data = keeper.anonymize(data=data)

identified_data = keeper.identify(data=anonymized_data)

data.equals(identified_data) # returns True