1. 01 8月, 2016 1 次提交
  2. 21 7月, 2016 1 次提交
  3. 06 7月, 2016 1 次提交
  4. 02 7月, 2016 1 次提交
  5. 29 6月, 2016 1 次提交
  6. 22 6月, 2016 1 次提交
  7. 01 6月, 2016 1 次提交
  8. 24 5月, 2016 2 次提交
  9. 20 5月, 2016 1 次提交
    • R
      Rename lh_xxx,sk_xxx tp OPENSSL_{LH,SK}_xxx · 739a1eb1
      Rich Salz 提交于
      Rename sk_xxx to OPENSSL_sk_xxx and _STACK to OPENSSL_STACK
      Rename lh_xxx API to OPENSSL_LH_xxx and LHASH_NODE to OPENSSL_LH_NODE
      Make lhash stuff opaque.
      Use typedefs for function pointers; makes the code simpler.
      Remove CHECKED_xxx macros.
      Add documentation; remove old X509-oriented doc.
      Add API-compat names for entire old API
      Reviewed-by: NDr. Stephen Henson <steve@openssl.org>
      739a1eb1
  10. 19 5月, 2016 1 次提交
  11. 18 5月, 2016 3 次提交
  12. 09 5月, 2016 1 次提交
  13. 20 4月, 2016 3 次提交
  14. 13 4月, 2016 5 次提交
  15. 21 3月, 2016 1 次提交
  16. 11 3月, 2016 2 次提交
  17. 08 3月, 2016 1 次提交
  18. 04 3月, 2016 1 次提交
  19. 29 2月, 2016 1 次提交
  20. 27 2月, 2016 1 次提交
    • D
      RT4335: Fix UEFI build of OBJ_NAME_new_index() · 2d51c28f
      David Woodhouse 提交于
      We are using strcmp() as the cmp_func, where in the EDK2 environment
      strcmp actually ends up being the external AsciiStrCmp() function —
      an EFI library function defined with the Microsoft ABI.
      
      This means that we can't just assign function pointers to it, since
      in GCC-hosted builds the ABI of any function *not* explicitly marked
      EFIAPI is the native SysV ABI.
      
      Arguably this stupidity ought to be resolved on the UEFI side, but in
      the general case that would mean that we need to provide ABI-compatible
      wrappers for *all* the "standard" functions, just in case they're used
      like this.
      
      And in fact we already have a workaround here for DEC C. So instead of
      playing games with casting function pointers, it's nicer just to use a
      simple function to wrap the strcmp() call. That cleans up the DEC C
      workaround, *and* it works around the UEFI bogosity at the same time.
      Signed-off-by: NRich Salz <rsalz@openssl.org>
      Reviewed-by: NKurt Roeckx <kurt@openssl.org>
      2d51c28f
  21. 20 2月, 2016 1 次提交
    • R
      Always build library object files with shared library cflags · 45502bfe
      Richard Levitte 提交于
      This takes us away from the idea that we know exactly how our static
      libraries are going to get used.  Instead, we make them available to
      build shareable things with, be it other shared libraries or DSOs.
      
      On the other hand, we also have greater control of when the shared
      library cflags.  They will never be used with object files meant got
      binaries, such as apps/openssl or test/test*.
      
      With unified, we take this a bit further and prepare for having to
      deal with extra cflags specifically to be used with DSOs (dynamic
      engines), libraries and binaries (applications).
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      45502bfe
  22. 19 2月, 2016 1 次提交
  23. 12 2月, 2016 1 次提交
    • R
      Perl's chop / chomp considered bad, use a regexp instead · 9ba96fbb
      Richard Levitte 提交于
      Once upon a time, there was chop, which somply chopped off the last
      character of $_ or a given variable, and it was used to take off the
      EOL character (\n) of strings.
      
      ... but then, you had to check for the presence of such character.
      
      So came chomp, the better chop which checks for \n before chopping it
      off.  And this worked well, as long as Perl made internally sure that
      all EOLs were converted to \n.
      
      These days, though, there seems to be a mixture of perls, so lines
      from files in the "wrong" environment might have \r\n as EOL, or just
      \r (Mac OS, unless I'm misinformed).
      
      So it's time we went for the more generic variant and use s|\R$||, the
      better chomp which recognises all kinds of known EOLs and chops them
      off.
      
      A few chops were left alone, as they are use as surgical tools to
      remove one last slash or one last comma.
      
      NOTE: \R came with perl 5.10.0.  It means that from now on, our
      scripts will fail with any older version.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      9ba96fbb
  24. 06 2月, 2016 1 次提交
  25. 04 2月, 2016 3 次提交
  26. 03 2月, 2016 1 次提交
  27. 01 2月, 2016 1 次提交
  28. 30 1月, 2016 1 次提交