1. 14 6月, 2013 1 次提交
  2. 13 6月, 2013 6 次提交
    • A
      This change alters the processing of invalid, RSA pre-master secrets so · adb46dbc
      Adam Langley 提交于
      that bad encryptions are treated like random session keys in constant
      time.
      adb46dbc
    • B
      Ignore one-makefile stuff. · 7e25d818
      Ben Laurie 提交于
      7e25d818
    • M
      Document updates from wiki. · aafbe1cc
      Matt Caswell 提交于
      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
    • D
      Exetended OAEP support. · 271fef0e
      Dr. Stephen Henson 提交于
      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
    • D
      Typo. · 965e06da
      Dr. Stephen Henson 提交于
      965e06da
    • T
      Add support for arbitrary TLS extensions. · a398f821
      Trevor 提交于
      Contributed by Trevor Perrin.
      a398f821
  3. 12 6月, 2013 1 次提交
  4. 11 6月, 2013 7 次提交
  5. 05 6月, 2013 6 次提交
  6. 04 6月, 2013 1 次提交
  7. 01 6月, 2013 1 次提交
  8. 26 5月, 2013 4 次提交
  9. 14 5月, 2013 1 次提交
  10. 13 5月, 2013 2 次提交
  11. 05 5月, 2013 2 次提交
  12. 02 5月, 2013 1 次提交
  13. 23 4月, 2013 2 次提交
  14. 14 4月, 2013 3 次提交
    • D
      Typo. · 412834dc
      Dr. Stephen Henson 提交于
      412834dc
    • A
      Fix Windows linking error in GOST test case. · db05b447
      Andy Polyakov 提交于
      db05b447
    • A
      crypto/modes/modes_lcl.h: let STRICT_ALIGNMENT be on ARMv7. · 3bdd8052
      Andy Polyakov 提交于
      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
  15. 09 4月, 2013 2 次提交
    • D
      Suite B support for DTLS 1.2 · 4544f0a6
      Dr. Stephen Henson 提交于
      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
    • D
      Always return errors in ssl3_get_client_hello · c56f5b8e
      Dr. Stephen Henson 提交于
      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