Skip to main content

Python library for encryption

Project description

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

riddle-2020.1.5.tar.gz (4.5 kB view hashes)

Uploaded Source

Built Distribution

riddle-2020.1.5-py3-none-any.whl (6.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page