sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

index.md (730B)


      1 Digest auth
      2 ===========
      3 
      4 Description
      5 -----------
      6 This patch adds support for Digest auth to quark. It follows RFC 7616, but
      7 with some limitations:
      8 
      9 * SHA-256 is unsupported, only MD5 can be used. If we lived in an ideal world,
     10   SHA-256 Digest auth would be supported by browsers since mid-2010s. Turns
     11   out that we aren't that lucky, so MD5 it is.
     12 * Only auth qop mode is supported. If you want to protect the integrity of
     13   your connection, better use a TLS tunnel.
     14 
     15 Download
     16 --------
     17 * [quark-digestauth-20201101-dff98c0.diff](quark-digestauth-20201101-dff98c0.diff)
     18 * [quark-digestauth-20200916-5d0221d.diff](quark-digestauth-20200916-5d0221d.diff)
     19 
     20 Author
     21 ------
     22 * José Miguel Sánchez García <soy.jmi2k AT gmail DOT com>