(PHP 4 >= 4.0.2, PHP 5)
mcrypt_module_self_test — Teste un mode
$algorithm
[, string $lib_dir
] )Effectue un test sur l'algorithme spécifié.
algorithm
The algorithm to test.
lib_dir
Le paramètre optionnel lib_dir
contient
le chemin jusqu'au module de l'algorithme sur le système.
Retourne TRUE
si le test fonctionne, et FALSE
sinon.
Exemple #1 Exemple avec mcrypt_module_self_test()
<?php
var_dump(mcrypt_module_self_test(MCRYPT_RIJNDAEL_128)) . "\n";
var_dump(mcrypt_module_self_test(MCRYPT_BOGUS_CYPHER));
?>
L'exemple ci-dessus va afficher :
bool(true) bool(false)