Subversion Repositories ALCASAR

Rev

Rev 325 | Rev 1464 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
325 richard 1
<?php
2
function da_encrypt()
3
{
4
	$numargs=func_num_args();
5
	$passwd=func_get_arg(0);
386 franck 6
	# calcul d'un salt pour forcer le chiffrement en MD5 au lieu de blowfish par defaut dans php version mdva > 2007.1
325 richard 7
	$salt='$1$passwd$';
8
	if ($numargs == 2){
9
		$salt=func_get_arg(1);
10
		return crypt($passwd,$salt);
11
	}
12
        return crypt($passwd,$salt);
13
}
14
?>