Skip to content
  1. May 03, 2013
  2. May 02, 2013
  3. Apr 13, 2013
    • Andy Polyakov's avatar
      crypto/modes/modes_lcl.h: let STRICT_ALIGNMENT be on ARMv7. · 29a54672
      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.
      (cherry picked from commit 3bdd8052)
      29a54672
  4. Apr 08, 2013
  5. Mar 31, 2013
  6. Mar 28, 2013
  7. Mar 26, 2013
  8. Mar 19, 2013
  9. Mar 18, 2013
  10. Mar 01, 2013
  11. Feb 16, 2013
  12. Feb 15, 2013
    • Nick Alcock's avatar
      Fix POD errors to stop make install_docs dying with pod2man 2.5.0+ · 08f8933f
      Nick Alcock authored
      podlators 2.5.0 has switched to dying on POD syntax errors. This means
      that a bunch of long-standing erroneous POD in the openssl documentation
      now leads to fatal errors from pod2man, halting installation.
      
      Unfortunately POD constraints mean that you have to sort numeric lists
      in ascending order if they start with 1: you cannot do 1, 0, 2 even if
      you want 1 to appear first. I've reshuffled such (alas, I wish there
      were a better way but I don't know of one).
      (cherry picked from commit 5cc27077)
      08f8933f
  13. Feb 14, 2013
  14. Feb 12, 2013
  15. Feb 11, 2013
  16. Feb 09, 2013
  17. Feb 08, 2013
  18. Feb 07, 2013
  19. Feb 06, 2013
    • Adam Langley's avatar
      Fix for EXP-RC2-CBC-MD5 · f306b87d
      Adam Langley authored
      MD5 should use little endian order. Fortunately the only ciphersuite
      affected is EXP-RC2-CBC-MD5 (TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5) which
      is a rarely used export grade ciphersuite.
      f306b87d