all you need to do is (if you can use mcrypt)
function encrypt($input,$key){
$iv = mcrypt_create_iv (mcrypt_get_iv_size (blowfish, MCRYPT_MODE_ECB), MCRYPT_RAND);
$encrypted = mcrypt_encrypt (ENC_ALGORITHM_HERE, $key, $input, MCRYPT_MODE_ECB, $iv);
$encrypted = base64_encode($encrypted);
return $encrypted;
}
function decrypt($input,$key){
$decrypted = base64_decode($input);
$iv = mcrypt_create_iv (mcrypt_get_iv_size (blowfish, MCRYPT_MODE_ECB), MCRYPT_RAND);
$decrypted = mcrypt_decrypt (ENC_ALGORITHM_HERE, $key, $decrypted, MCRYPT_MODE_ECB, $iv);
return $decrypted;
}
subsititute ENC_ALGORITHM_HERE for your favourite two-way algorithm.
$key is a universal encryption key. the string will only decrypt if you supply the correct key.
look on google for a visual basic based decryption tool, and just make a little prog to decrypt strings (same cipher as the php functions, of course). if you're that worried about it, anyway.