Skip to content

It is a code for encryption of passwords or any type of data, and it has an inbuilt decryptor as well, it is coded purely in python

Notifications You must be signed in to change notification settings

ShreyashM17/Encrypytor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Custom Encrypytion and Decryption code

It is a code for encryption of passwords, and it has an inbuilt decryptor as well, it is coded purely in python with no external libraries

Example:-

Encrypting a password

value = 'Password'
encryption = encoder(value)
print(f'Result: {encryption}')

Result: y^9PaNq+ssIo_wo0HSrd324e

Decrypting a password

value = 'y^9PaNq+ssIo_wo0HSrd324e'
decryption = decoder(value)
print(f'Result: {decryption}')

Result: Password

About

It is a code for encryption of passwords or any type of data, and it has an inbuilt decryptor as well, it is coded purely in python

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages