Digest Auth, NTLM & Hawk
These auth types involve server-side computation and are handled entirely in the Electron main process — not in the browser.
Digest Auth
HTTP Digest Authentication is a challenge-response mechanism. The server sends a challenge (nonce) and the client responds with an MD5/SHA hash.
Setup:
- Select Digest Auth
- Enter Username and Password
Rostyman handles the challenge-response handshake automatically:
- Sends the initial request
- Receives the
401withWWW-Authenticate: Digest ...header - Computes the response hash
- Resends with the
Authorization: Digest ...header
Both fields support {{variables}}.
NTLM
NTLM (NT LAN Manager) is Windows domain authentication, commonly used with on-premise Microsoft services (SharePoint, IIS, etc.).
Setup:
- Select NTLM
- Enter Username, Password, and optionally Domain and Workstation
Rostyman handles the multi-step NTLM handshake automatically.
Hawk Authentication
Hawk is an HMAC-based HTTP authentication scheme that signs requests with a shared secret.
Setup:
- Select Hawk
- Enter:
- Hawk Auth ID — your Hawk credentials ID
- Hawk Auth Key — your Hawk secret key
- Algorithm —
sha256orsha1
Optionally configure:
- User, Nonce, Extra Data, App ID, Delegation for advanced Hawk features
Rostyman computes the Authorization: Hawk ... header automatically for each request.