Whirlpool Encryption and PHP
#2

Even though this is not a PHP forum..there you go
PHP код:
public function encrypt$string ) {
    global 
$vars;
    
$string hash('whirlpool',$string);
    return 
$string;

Don't know what's that $vars doing there.. i just left there tho..

Shorter version
PHP код:
public function encrypt$string ) {
    return 
hash('whirlpool',$string);

Reply


Messages In This Thread
Whirlpool Encryption and PHP - by Kebab- - 28.03.2013, 21:14
Re: Whirlpool Encryption and PHP - by InfiniTy. - 28.03.2013, 21:21

Forum Jump:


Users browsing this thread: 1 Guest(s)