picturecipher icon indicating copy to clipboard operation
picturecipher copied to clipboard

PHP picture encipher/decipher

Results 5 picturecipher issues
Sort by recently updated
recently updated
newest added

Hopefully some time in the future :)

So if we were using my special character mapping, the message "wdR" in base64 (d2RS) could be encoded in 3 pixels. Let's say the pixels are: (45, 234, 34) (212,...

new feature

Example code ``` $width = range(0, $argv[1]); $height = range(0, $argv[2]); srand($argv[3]); shuffle($width); shuffle($height); echo "(" . $width[array_rand($width)] . ", " . $height[array_rand($height)] . ")\n"; echo "(" . $width[array_rand($width)] ....

new feature

Add a verbose option for encryption and decryption.

enhancement