1. 03 9月, 2015 1 次提交
  2. 02 9月, 2015 4 次提交
  3. 01 9月, 2015 8 次提交
  4. 28 8月, 2015 3 次提交
  5. 27 8月, 2015 1 次提交
  6. 26 8月, 2015 2 次提交
  7. 24 8月, 2015 1 次提交
  8. 17 8月, 2015 1 次提交
  9. 14 8月, 2015 2 次提交
  10. 12 8月, 2015 5 次提交
  11. 11 8月, 2015 1 次提交
  12. 06 8月, 2015 1 次提交
  13. 04 8月, 2015 1 次提交
  14. 01 8月, 2015 2 次提交
  15. 30 7月, 2015 1 次提交
  16. 23 7月, 2015 2 次提交
  17. 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
  18. 16 7月, 2015 1 次提交
  19. 14 7月, 2015 1 次提交
  20. 08 7月, 2015 1 次提交