Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/shreyashm17/encrypytor

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
https://github.com/shreyashm17/encrypytor

decryption encryption python

Last synced: about 1 month ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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