PMA\libraries\plugins\auth\AuthenticationCookie::_getEncryptionSecret PHP Method

_getEncryptionSecret() private method

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