PMA\libraries\plugins\auth\AuthenticationCookie::_getEncryptionSecret PHP 메소드

_getEncryptionSecret() 개인적인 메소드

Returns blowfish secret or generates one if needed.
private _getEncryptionSecret ( ) : string
리턴 string
    private function _getEncryptionSecret()
    {
        if (empty($GLOBALS['cfg']['blowfish_secret'])) {
            return $this->_getSessionEncryptionSecret();
        } else {
            return $GLOBALS['cfg']['blowfish_secret'];
        }
    }