Cml\Encry::createKey PHP Méthode

createKey() private static méthode

生成加密KEY
private static createKey ( string $key ) : void
$key string
Résultat void
    private static function createKey($key)
    {
        $key = is_null($key) ? Config::get("auth_key") : $key;
        self::$auth_key = md5($key);
    }