https://github.com/vargalaszlo87/ghcrypt
keyless text encryptor/decryptor
https://github.com/vargalaszlo87/ghcrypt
decrypt encrypt encrypt-decrypt php string string-decryption string-encryption
Last synced: 3 months ago
JSON representation
keyless text encryptor/decryptor
- Host: GitHub
- URL: https://github.com/vargalaszlo87/ghcrypt
- Owner: vargalaszlo87
- Created: 2023-07-11T06:54:46.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-15T19:07:27.000Z (over 1 year ago)
- Last Synced: 2023-11-15T20:26:44.029Z (over 1 year ago)
- Topics: decrypt, encrypt, encrypt-decrypt, php, string, string-decryption, string-encryption
- Language: PHP
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GHCrypt
This is a keyless encrypt/decrypt algorithm for plain text.
## Usage/Examples
```php
enstring($text);
$decrypt = $myCrypt -> destring($encrypt);echo "Plain-text: ".$text."\n";
echo "Crypted: ".$encrypt."\n";
echo "Decrypted: ".$decrypt."\n";unset($myCrypt);
?>
```## Demo
The result after two runs:
