Authentication Demos

Each endpoint issues a real WWW-Authenticate challenge and reflects the parsed request back once authenticated.

Basic

Basic

Browser-native credential dialog. Encodes username:password as base64.

Challenge
Basic realm="demo"

Digest

Digest

Challenge–response scheme. Never sends the password in clear text.

Challenge
Digest realm="demo", nonce="…", algorithm=MD5, qop="auth"

Digest MD5

Digest

Digest auth using the MD5 hashing algorithm explicitly.

Challenge
Digest realm="demo", nonce="…", algorithm=MD5, qop="auth"

Digest SHA-256

Digest

Digest auth using the stronger SHA-256 hashing algorithm.

Challenge
Digest realm="demo", nonce="…", algorithm=SHA-256, qop="auth"

Kerberos (Negotiate)

Negotiate

SPNEGO/Kerberos via the Negotiate scheme. The client wraps a Kerberos AP-REQ in a GSSAPI/SPNEGO token. Requires the interactive client.

Challenge
Negotiate