1. 01 3月, 2016 1 次提交
  2. 21 11月, 2015 1 次提交
    • M
      Add the Dummy Async engine (dasync) · a14e9ff7
      Matt Caswell 提交于
      This engine is for developers of async aware applications. It simulates
      asynchronous activity with external hardware. This initial version supports
      SHA1 and RSA. Certain operations using those algorithms have async job
      "pauses" in them - using the new libcrypto async capability.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      a14e9ff7
  3. 25 9月, 2015 1 次提交
    • M
      Change ossltest engine to manually allocate cipher_data · 51a60817
      Matt Caswell 提交于
      The ossltest engine wraps the built-in implementation of aes128-cbc.
      Normally in an engine the cipher_data structure is automatically allocated
      by the EVP layer. However this relies on the engine specifying up front
      the size of that cipher_data structure. In the case of ossltest this value
      isn't available at compile time. This change makes the ossltest engine
      allocate its own cipher_data structure instead of leaving it to the EVP
      layer.
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      51a60817
  4. 12 8月, 2015 1 次提交
    • M
      Add OSSLTest Engine · 2d5d70b1
      Matt Caswell 提交于
      This engine is for testing purposes only. It provides crippled crypto
      implementations and therefore must not be used in any instance where
      security is required.
      
      This will be used by the forthcoming libssl test harness which will operate
      as a man-in-the-middle proxy. The test harness will be able to modify
      TLS packets and read their contents. By using this test engine packets are
      not encrypted and MAC codes always verify.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      2d5d70b1
  5. 22 1月, 2015 1 次提交
  6. 18 4月, 2008 1 次提交
  7. 30 1月, 2003 1 次提交
  8. 12 10月, 2002 1 次提交
  9. 08 2月, 2002 1 次提交
  10. 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
  11. 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
  12. 05 7月, 2001 1 次提交
  13. 13 5月, 2001 2 次提交
  14. 20 2月, 2001 1 次提交
  15. 08 1月, 2001 1 次提交
  16. 19 3月, 2000 1 次提交
  17. 06 2月, 2000 1 次提交
  18. 05 2月, 2000 1 次提交
  19. 04 12月, 1999 1 次提交
    • B
      Add functions des_set_key_checked, des_set_key_unchecked. · cddfe788
      Bodo Möller 提交于
      Never use des_set_key (it depends on the global variable des_check_key),
      but usually des_set_key_unchecked.
      Only destest.c bothered to look at the return values of des_set_key,
      but it did not set des_check_key -- if it had done so,
      most checks would have failed because of wrong parity and
      because of weak keys.
      cddfe788
  20. 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
  21. 20 4月, 1999 1 次提交
  22. 14 2月, 1999 1 次提交
  23. 21 12月, 1998 2 次提交