https://github.com/detomon/squid-password-emojifier
This tool encrypts a password or any text and outputs the result as a series of emojis
https://github.com/detomon/squid-password-emojifier
decryption emoji encryption password password-encoding password-encryption php squid
Last synced: 11 months ago
JSON representation
This tool encrypts a password or any text and outputs the result as a series of emojis
- Host: GitHub
- URL: https://github.com/detomon/squid-password-emojifier
- Owner: detomon
- Created: 2017-06-02T06:31:37.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-02T07:22:19.000Z (about 9 years ago)
- Last Synced: 2025-01-24T21:27:24.890Z (over 1 year ago)
- Topics: decryption, emoji, encryption, password, password-encoding, password-encryption, php, squid
- Language: PHP
- Homepage: https://squid.monoxid.ch/
- Size: 12.7 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🐙 Squid Password Emojifier
This tool encrypts a password or any text and outputs the result as a series of emojis. For example, `My5eCr3t` could be encrypted to something like this:
> 😲😡💄🐲🙂🙏👨💑🐘👬😳😓🙄🐐💰🐌
This can then be decrypted to the original password.
[Demo](https://squid.monoxid.ch) - *Do not use this for real passwords*
## Setup
All you need is a webserver running PHP.
Generate a new secret key by running the following command:
```sh
php dev/make-key.php
```
Replace the default `$secret` in `inc/config.php` with the generated one to ensure that only you can encrypt/decrypt your password.
## Security
There is no user verification to keep it simple. Use `.htaccess` for a simple login or limit the access to your personal IP address.
The passwords are encrypted with `AES-256-CBC`. This allows to identify invalid emoji strings.