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

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

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:

![App Screenshot](https://vargalaszlo.com/images/out/ghcrypt.png)