I was wondering if someone has come up with something similar to this??
a way to compress a text:
<?php
$str = 'Hello world!';// the text here can be any characters long
$key = compress($str);// should return a key 32characters long/ or a fixed number of characters
$value = decompress($key);// should return "Hello World!"
?>
Using MD5 is a one way encryption/compression, basically I would like something like MD5 to be reversable. Not necessarly the MD5 it self.