A Simple String Encryption Tool.
Project description
scrypt (Simple String Encyption)
Simple string encyption package is written in python.
scrypt
is used for string encryption with password.
INSTALLATION
Installation with pip
$ pip3 install scryp
Encrypt String
encrypt()
function is used for encrypt string. encrypt("STRING","PASSWORD")
function takes 2 arguments. 1st Is string for encrypt and second is password string.
from scryp import encrypt
encrypted_string = encrypt('my name','AStrongPassword')
print(encrypted_string)
###Output
5038525S5593225S1479200S5084750S4483825S5038525S4668725
Decrypt String
decrypt()
function is used for encrypt string. decrypt("STRING","PASSWORD")
function takes 2 arguments. 1st Is string for decrypt and second is password string.
from scryp import encrypt,decrypt
encrypted_string = encrypt('my name','AStrongPassword')
decrypted_string = decrypt(encrypted_string,'AStrongPassword')
print(decrypted_string)
###Output
my name
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
scryp-0.0.5-py3-none-any.whl
(3.0 kB
view details)
File details
Details for the file scryp-0.0.5-py3-none-any.whl
.
File metadata
- Download URL: scryp-0.0.5-py3-none-any.whl
- Upload date:
- Size: 3.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 653384d9fa9dd8818f2e1fdc6589dde761edb39be149bbc36b360e813c4871df |
|
MD5 | 1837e91ab3ffc4fc8c9de817aee4b691 |
|
BLAKE2b-256 | 37e7bc2fa7697f3f1833e12238ae208d80ef6c4aa239af9f7b34211cd63ceed8 |