Skip to content
Snippets Groups Projects
  1. Aug 15, 2016
  2. Aug 11, 2016
  3. Aug 05, 2016
    • Daniel Kahn Gillmor's avatar
      Log key-pinning strings for TLS keys · 0cd371a4
      Daniel Kahn Gillmor authored and Ondřej Surý's avatar Ondřej Surý committed
      RFC 7858 explicitly defines an out-of-band key pinning profile as one
      authentication mechanism.  It uses the same format for representing
      the pin as HPKP does (RFC 7469).
      
      By logging this pin directly upon first use of the X.509 credentials,
      we make it a little bit easier for an admin to publish part of a
      pinset.
      
      For ideal operation (including preparation for key rollover), a backup
      public key should also be provided, but this is not defined
      functionally here.
      0cd371a4
  4. Jul 16, 2016
  5. May 20, 2016
    • Marek Vavrusa's avatar
      lib: cache api v2, removed dep on libknot db.h · e68c3a0a
      Marek Vavrusa authored
      this change introduces new API for cache backends,
      that is a subset of knot_db_api_t from libknot
      with several cache-specific operations
      
      major changes are:
      * merged 'cachectl' module into 'cache' as it is
        99% default-on and it simplifies things
      * not transaction oriented, transactions may be
        reused and cached for higher performance
      * scatter/gather API, this is important for
        latency and performance of non-local backends
        like Redis
      * faster and reliable cache clearing
      * cache-specific operations (prefix scan, ...) in
        the API not hacked in
      * simpler code for both backends and caller
      e68c3a0a
  6. May 18, 2016
  7. May 15, 2016
  8. Dec 17, 2015
  9. Dec 10, 2015
  10. Dec 09, 2015
  11. Nov 28, 2015
  12. Nov 25, 2015
    • Marek Vavruša's avatar
      build: amalgamated build support with AMALG=1 · af4254d1
      Marek Vavruša authored
      amalgamated build concatenates all files into a single .c file to
      allow compiler see all symbols and produce possibly smaller code.
      for binary distributions this is what you want, as it's faster but
      may consume more memory during compilation.
      it however cannot do incremental builds.
      af4254d1
  13. Nov 24, 2015
  14. Nov 19, 2015
  15. Oct 06, 2015
  16. Oct 05, 2015
  17. Aug 04, 2015
  18. Jul 15, 2015
  19. Jul 01, 2015
  20. Jun 30, 2015
  21. Jun 08, 2015
  22. Jun 07, 2015
  23. Jun 01, 2015
  24. May 25, 2015
  25. Apr 28, 2015
    • Marek Vavruša's avatar
      contrib: created 'contrib' directory with ccan/isaac as csprng · dbca2316
      Marek Vavruša authored
      previously cryptolib random function was used to generate message id,
      this works well but it is slow especially when the entropy is low,
      replaced with cryptographically safe prng ISAAC
      
      the ccan directory is going to be used in the future, as it's include
      structure makes it easy to embed C snippets instead of reimplementing
      them
      dbca2316