1. 28 Mar, 2017 8 commits
  2. 27 Mar, 2017 2 commits
  3. 26 Mar, 2017 1 commit
    • Andy Polyakov's avatar
      aes/asm/bsaes-armv7.pl: relax stack alignment requirement. · 0822d41b
      Andy Polyakov authored
      
      
      Even though Apple refers to Procedure Call Standard for ARM Architecture
      (AAPCS), they apparently adhere to custom version that doesn't follow
      stack alignment constraints in the said standard. [Why or why? If it's
      vendor lock-in thing, then it would be like worst spot ever.] And since
      bsaes-armv7 relied on standard alignment, it became problematic to
      execute the code on iOS.
      
      Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
      0822d41b
  4. 25 Mar, 2017 2 commits
  5. 24 Mar, 2017 8 commits
  6. 23 Mar, 2017 2 commits
  7. 22 Mar, 2017 6 commits
  8. 21 Mar, 2017 10 commits
  9. 20 Mar, 2017 1 commit
    • Richard Levitte's avatar
      Fix decoding of ASN.1 LONG and ZLONG items · ca2045dc
      Richard Levitte authored
      
      
      LONG and ZLONG items (which are OpenSSL private special cases of
      ASN1_INTEGER) are encoded into DER with padding if the leading octet
      has the high bit set, where the padding can be 0x00 (for positive
      numbers) or 0xff (for negative ones).
      
      When decoding DER to LONG or ZLONG, the padding wasn't taken in
      account at all, which means that if the encoded size with padding
      is one byte more than the size of long, decoding fails.  This change
      fixes that issue.
      
      Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/3000)
      ca2045dc