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"]) . '"';
    }