View Source DigexRequest.WWWAuthenticate (DigexRequest v0.2.0)

The representation of a digest www-authenticate header

Link to this section Summary

Link to this section Types

@type t() :: %DigexRequest.WWWAuthenticate{
  algorithm: atom(),
  charset: String.t(),
  domain: [String.t()],
  nonce: String.t(),
  opaque: String.t(),
  qop: String.t(),
  realm: String.t(),
  stale: boolean(),
  userhash: boolean()
}

Link to this section Functions

@spec parse(String.t()) :: t()