//CRYPT and DECRYPT function bobbyCrypt( $string, $action = 'e' ,$secret_key ) { $secret_iv = 'bibliogeek'; $output = false; $encrypt_method = "AES-256-CBC"; $key = hash( 'sha256', $secret_key ); $iv = substr(
Day: 11 novembre 2019
PHP : String RandomPHP : String Random
//RANDOM STRING function getStringRandom($size) { // Initialisation des caractères utilisables $characters = array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, "a", "b",