AppserverIo\Appserver\ServletEngine\Authenticator\DigestAuthenticator::getAuthenticateHeader PHP Метод

getAuthenticateHeader() публичный Метод

Returns the authentication header for response to set
public getAuthenticateHeader ( ) : string
Результат string
    public function getAuthenticateHeader()
    {
        return $this->getType() . ' realm="' . $this->configData["realm"] . '",qop="auth",nonce="' . uniqid() . '",opaque="' . md5($this->configData["realm"]) . '"';
    }