1. 20 7月, 2015 1 次提交
    • R
      Rewrite crypto/ex_data · 7e5363ab
      Rich Salz 提交于
      Removed ability to set ex_data impl at runtime.  This removed these
      three functions:
          const CRYPTO_EX_DATA_IMPL *CRYPTO_get_ex_data_implementation(void);
          int CRYPTO_set_ex_data_implementation(const CRYPTO_EX_DATA_IMPL *i);
          int CRYPTO_ex_data_new_class(void);
      It is no longer possible to change the ex_data implementation at
      runtime.  (Luckily those functions were never documented :)
      
      Also removed the ability to add new exdata "classes."  We don't believe
      this received much (if any) use, since you can't add it to OpenSSL objects,
      and there are probably better (native) methods for developers to add
      their own extensible data, if they really need that.
      
      Replaced the internal hash table (of per-"class" stacks) with a simple
      indexed array.  Reserved an index for "app" application.
      
      Each API used to take the lock twice; now it only locks once.
      
      Use local stack storage for function pointers, rather than malloc,
      if possible (i.e., number of ex_data items is under a dozen).
      
      Make CRYPTO_EX_DATA_FUNCS opaque/internal.
      
      Also fixes RT3710; index zero is reserved.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      7e5363ab
  2. 16 7月, 2015 1 次提交
  3. 09 7月, 2015 1 次提交
  4. 24 6月, 2015 1 次提交
  5. 09 6月, 2015 1 次提交
  6. 03 6月, 2015 1 次提交
  7. 26 5月, 2015 1 次提交
  8. 21 5月, 2015 1 次提交
  9. 20 5月, 2015 1 次提交
  10. 13 5月, 2015 1 次提交
  11. 12 5月, 2015 1 次提交
    • R
      Make COMP_CTX and COMP_METHOD opaque · 9a555706
      Rich Salz 提交于
      Since COMP_METHOD is now defined in comp_lcl.h, it is no
      longer possible to create new TLS compression methods without
      using the OpenSSL source.  Only ZLIB is supported by default.
      Also, since the types are opaque, #ifdef guards to use "char *"
      instead of the real type aren't necessary.
      
      The changes are actually minor.  Adding missing copyright to some
      files makes the diff misleadingly big.
      Reviewed-by: NMatt Caswell <matt@openssl.org>
      9a555706
  12. 06 5月, 2015 1 次提交
  13. 01 5月, 2015 1 次提交
    • R
      free cleanup almost the finale · 4b45c6e5
      Rich Salz 提交于
      Add OPENSSL_clear_free which merges cleanse and free.
      (Names was picked to be similar to BN_clear_free, etc.)
      Removed OPENSSL_freeFunc macro.
      Fixed the small simple ones that are left:
              CRYPTO_free CRYPTO_free_locked OPENSSL_free_locked
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      4b45c6e5
  14. 28 4月, 2015 1 次提交
    • R
      ERR_ cleanup · 3e47caff
      Rich Salz 提交于
      Remove ERR_[gs]et_implementation as they were not undocumented and
      useless (the data structure was opaque).
      
      Halve the number of lock/unlock calls in almost all ERR_
      functions by letting the caller of get_hash or int_thread_set
      able to lock.  Very useful when looping, such as adding errors,
      or when getting the hash and immediately doing a lookup on it.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      3e47caff
  15. 04 4月, 2015 1 次提交
  16. 31 3月, 2015 1 次提交
  17. 28 3月, 2015 1 次提交
  18. 26 3月, 2015 1 次提交
  19. 25 3月, 2015 3 次提交
  20. 23 3月, 2015 1 次提交
  21. 15 3月, 2015 1 次提交
  22. 10 3月, 2015 1 次提交
  23. 05 3月, 2015 1 次提交
  24. 07 2月, 2015 1 次提交
  25. 06 2月, 2015 1 次提交
  26. 05 2月, 2015 1 次提交
    • R
      Fix various build breaks · 1f7103b6
      Rich Salz 提交于
      TABLE wasn't updated from a previous Configure change
      Missed an RMD160/RIPE/RIPEMD unification in mkdef.pl
      Makefile install_sw referenced file doc/openssl-shared.txt (RT3686)
      Needed to run 'make update' because
              - Various old code has been removed
              - Varous old #ifdef tests were removed
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      1f7103b6
  27. 28 1月, 2015 1 次提交
  28. 12 1月, 2015 1 次提交
  29. 06 1月, 2015 1 次提交
  30. 12 12月, 2014 1 次提交
  31. 09 12月, 2014 3 次提交
  32. 08 12月, 2014 1 次提交
  33. 24 9月, 2014 1 次提交
  34. 05 9月, 2014 1 次提交
  35. 21 7月, 2014 1 次提交
  36. 20 7月, 2014 1 次提交