Cml\Encry::createKey PHP 메소드

createKey() 개인적인 정적인 메소드

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