Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/shreyashm17/encrypytor
- Owner: ShreyashM17
- Created: 2024-09-14T13:15:21.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-14T13:43:09.000Z (3 months ago)
- Last Synced: 2024-09-14T23:19:15.612Z (3 months ago)
- Topics: decryption, encryption, python
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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