1. 26 5月, 2023 1 次提交
  2. 12 4月, 2023 2 次提交
  3. 10 8月, 2021 1 次提交
  4. 27 2月, 2020 1 次提交
  5. 28 9月, 2019 1 次提交
  6. 18 5月, 2016 1 次提交
  7. 19 2月, 2016 1 次提交
    • R
      Remove outdated DEBUG flags. · d63a5e5e
      Rich Salz 提交于
      Add -DBIO_DEBUG to --strict-warnings.
      Remove comments about outdated debugging ifdef guards.
      Remove md_rand ifdef guarding an assert; it doesn't seem used.
      Remove the conf guards in conf_api since we use OPENSSL_assert, not assert.
      For pkcs12 stuff put OPENSSL_ in front of the macro name.
      Merge TLS_DEBUG into SSL_DEBUG.
      Various things just turned on/off asserts, mainly for checking non-NULL
      arguments, which is now removed: camellia, bn_ctx, crypto/modes.
      Remove some old debug code, that basically just printed things to stderr:
        DEBUG_PRINT_UNKNOWN_CIPHERSUITES, DEBUG_ZLIB, OPENSSL_RI_DEBUG,
        RL_DEBUG, RSA_DEBUG, SCRYPT_DEBUG.
      Remove OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      d63a5e5e
  8. 06 2月, 2016 1 次提交
  9. 22 1月, 2015 2 次提交
  10. 16 2月, 2011 1 次提交
  11. 05 5月, 2010 1 次提交
    • A
      "Jumbo" update for crypto/modes: · f472ec8c
      Andy Polyakov 提交于
      - introduce common modes_lcl.h;
      - ctr128.c: implement additional CRYPTO_ctr128_encrypt_ctr32 interface;
      - gcm128.c: add omitted ARM initialization, remove ctx.ctr;
      f472ec8c
  12. 14 4月, 2010 1 次提交
  13. 16 2月, 2010 1 次提交
    • D
      PR: 2164 · 918a5d04
      Dr. Stephen Henson 提交于
      Submitted by: "Noszticzius, Istvan" <inoszticzius@rightnow.com>
      
      Don't clear the output buffer: ciphers should correctly the same input
      and output buffers.
      918a5d04
  14. 29 12月, 2008 1 次提交
  15. 23 12月, 2008 1 次提交
  16. 16 12月, 2008 1 次提交
    • A
      128-bit block cipher modes consolidation. As consolidated functions · 85b2c0ce
      Andy Polyakov 提交于
      rely on indirect call to block functions, they are not as fast as
      non-consolidated routines. However, performance loss(*) is within
      measurement error and consolidation advantages are considered to
      outweigh it.
      
      (*) actually one can observe performance *improvement* on e.g.
          CBC benchmarks thanks to optimization, which also becomes
          shared among ciphers.
      85b2c0ce
  17. 01 11月, 2008 1 次提交
  18. 05 4月, 2007 1 次提交
  19. 05 6月, 2006 1 次提交
  20. 30 5月, 2006 1 次提交
  21. 20 4月, 2006 2 次提交
  22. 30 12月, 2004 1 次提交
  23. 01 11月, 2004 1 次提交
  24. 29 1月, 2004 1 次提交
  25. 13 11月, 2002 1 次提交
  26. 31 5月, 2002 1 次提交
  27. 16 2月, 2002 1 次提交
  28. 14 2月, 2002 1 次提交
  29. 06 2月, 2002 1 次提交
    • R
      With the changed des_old API, let's complete the work by renaming the · 44bdb056
      Richard Levitte 提交于
      functions in ui_compat.  This gave reason to rework that part more
      thoroughly, so here are the changes made:
      
      1. Add DES_read_password() and DES_read_2passwords() with the same
         functionality as the corresponding old des_ functions, as a
         convenience to the users.
      2. Add UI_UTIL_read_pw_string() and UI_UTIL_read_pw() with the
         functionality from des_read_pw_string() and des_read_pw(), again as
         a concenience to the users.
      3. Rename des_read_password(), des_read_2passwords(),
         des_read_pw_string() and des_read_pw() by changing des_ to
         _ossl_old_des_, and add the usual mapping macros.
      4. Move the implementation of des_read_password() and
         des_read_2passwords() to the des directory, since they are tightly
         tied to DES anyway.
      
      This change was inspired by a patch from Assar Westerlund <assar@sics.se>:
      
      There are some functions that didn't get the kick-away-old-des-and-
      replace-des-with-DES action.  Here's a patch that adds DES_ and des_
      (in des_old.h) versions of des_read_pw_string et al.  This patch
      includes some of the first des_old.h semi-colon macro fixes that I've
      already sent.
      44bdb056
  30. 25 10月, 2001 1 次提交
    • R
      Due to an increasing number of clashes between modern OpenSSL and · c2e4f17c
      Richard Levitte 提交于
      libdes (which is still used out there) or other des implementations,
      the OpenSSL DES functions are renamed to begin with DES_ instead of
      des_.  Compatibility routines are provided and declared by including
      openssl/des_old.h.  Those declarations are the same as were in des.h
      when the OpenSSL project started, which is exactly how libdes looked
      at that time, and hopefully still looks today.
      
      The compatibility functions will be removed in some future release, at
      the latest in version 1.0.
      c2e4f17c
  31. 16 5月, 1999 1 次提交
    • B
      Change type of various DES function arguments from des_cblock · edf0bfb5
      Bodo Möller 提交于
      (meaning pointer to char) to des_cblock * (meaning pointer to
      array with 8 char elements), which allows the compiler to
      do more typechecking.  (The changed argument types were of type
      des_cblock * back in SSLeay, and a lot of ugly casts were
      used then to turn them into pointers to elements; but it can be
      done without those casts.)
      
      Introduce new type const_des_cblock -- before, the pointers rather
      than the elements pointed to were declared const, and for
      some reason gcc did not complain about this (but some other
      compilers did).
      edf0bfb5
  32. 20 4月, 1999 1 次提交
  33. 14 2月, 1999 1 次提交
  34. 21 12月, 1998 2 次提交