Decrypto

Latest version: v1.1.1

Safety actively analyzes 688758 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 2 of 2

1.0.5

Major Changes

* decrypto now comes with the power of viginere cipher. To use it, try this

python
from decrypto import VigenereCipher

cipher = VigenereCipher()
data = 'Hello world'
key = 'cryptii'

encrypted = cipher.encrypt(data, key)
print(encrypted)

decrypted = cipher.decrypt(encrypted, key)
print(decrypted)


thanks to murugan-k-0204 for their contribution to this release

Page 2 of 2

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.