hey ya,

Does any one know a Sub Function / Routine, which i can use for PHP and VB which will both give the exact same result?

Say in php:
PHP Code:
$password "My Password Here";
$hased_pass = function($password); 
and vb:

VB Code:
  1. Dim HasedPass as string
  2. HashedPass = Module1.Function("My Password Here")

..? cuz i need to encrypt my users password / hash em, so as to protect there Data,

But i need to be able to use the same password in my website, and in my Chat Server application....