1. 13 Jun, 2013 2 commits
  2. 12 Jun, 2013 5 commits
    • Matt Caswell's avatar
      Document updates from wiki. · aafbe1cc
      Matt Caswell authored
      PR#3071
      
      The primary changes made are:
      - Updates to the "NAME" section of many pages to correctly reflect the
      functions defined on those pages. This section is automatically parsed
      by the util/extract-names.pl script, so if it is not correct then
      running "man" will not correctly locate the right manual pages.
      - Updates to take account of where functions are now deprecated
      - Full documentation of the ec sub-library
      - A number of other typo corrections and other minor tweaks
      aafbe1cc
    • Dr. Stephen Henson's avatar
      Exetended OAEP support. · 271fef0e
      Dr. Stephen Henson authored
      Extend OAEP support. Generalise the OAEP padding functions to support
      arbitrary digests. Extend EVP_PKEY RSA method to handle the new OAEP
      padding functions and add ctrls to set the additional parameters.
      271fef0e
    • Dr. Stephen Henson's avatar
      Typo. · 965e06da
      Dr. Stephen Henson authored
      965e06da
    • Trevor's avatar
      Add support for arbitrary TLS extensions. · a398f821
      Trevor authored
      Contributed by Trevor Perrin.
      a398f821
    • Ben Laurie's avatar
      Add aesni-sha256-x86_64. · 6d84daa5
      Ben Laurie authored
      6d84daa5
  3. 10 Jun, 2013 7 commits
  4. 05 Jun, 2013 2 commits
  5. 04 Jun, 2013 5 commits
  6. 01 Jun, 2013 1 commit
  7. 25 May, 2013 4 commits
  8. 13 May, 2013 3 commits
  9. 05 May, 2013 2 commits
  10. 02 May, 2013 1 commit
  11. 23 Apr, 2013 2 commits
  12. 14 Apr, 2013 1 commit
  13. 13 Apr, 2013 2 commits
    • Andy Polyakov's avatar
      db05b447
    • Andy Polyakov's avatar
      crypto/modes/modes_lcl.h: let STRICT_ALIGNMENT be on ARMv7. · 3bdd8052
      Andy Polyakov authored
      While ARMv7 in general is capable of unaligned access, not all instructions
      actually are. And trouble is that compiler doesn't seem to differentiate
      those capable and incapable of unaligned access. Side effect is that kernel
      goes into endless loop retrying same instruction triggering unaligned trap.
      Problem was observed in xts128.c and ccm128.c modules. It's possible to
      resolve it by using (volatile u32*) casts, but letting STRICT_ALIGNMENT
      be feels more appropriate.
      3bdd8052
  14. 09 Apr, 2013 3 commits
    • Dr. Stephen Henson's avatar
      Suite B support for DTLS 1.2 · 4544f0a6
      Dr. Stephen Henson authored
      Check for Suite B support using method flags instead of version numbers:
      anything supporting TLS 1.2 cipher suites will also support Suite B.
      
      Return an error if an attempt to use DTLS 1.0 is made in Suite B mode.
      4544f0a6
    • Dr. Stephen Henson's avatar
      Always return errors in ssl3_get_client_hello · c56f5b8e
      Dr. Stephen Henson authored
      If we successfully match a cookie don't set return value to 2 as this
      results in other error conditions returning 2 as well.
      
      Instead set return value to -2 which can be checked later if everything
      else is OK.
      c56f5b8e
    • Dr. Stephen Henson's avatar
      Dual DTLS version methods. · c6913eeb
      Dr. Stephen Henson authored
      Add new methods DTLS_*_method() which support both DTLS 1.0 and DTLS 1.2 and
      pick the highest version the peer supports during negotiation.
      
      As with SSL/TLS options can change this behaviour specifically
      SSL_OP_NO_DTLSv1 and SSL_OP_NO_DTLSv1_2.
      c6913eeb