AppserverIo\Appserver\ServletEngine\Authenticator\DigestAuthenticator::getAuthenticateHeader PHP Méthode

getAuthenticateHeader() public méthode

Returns the authentication header for response to set
public getAuthenticateHeader ( ) : string
Résultat string
    public function getAuthenticateHeader()
    {
        return $this->getType() . ' realm="' . $this->configData["realm"] . '",qop="auth",nonce="' . uniqid() . '",opaque="' . md5($this->configData["realm"]) . '"';
    }