1. 24 6月, 2001 1 次提交
    • R
      Implement boolean (yes/no or OK/Cancel, ...) input. · 2d2ed9df
      Richard Levitte 提交于
      Implement UI controls.  Current controls are the possibility to output
      the OpenSSL error stack on the same channel from within UI_process()
      and to check if the same user interface can be redone without being
      rebuilt (this is often more a question of philosophy than
      technicalities).
      2d2ed9df
  2. 20 6月, 2001 1 次提交
  3. 19 6月, 2001 1 次提交
  4. 06 6月, 2001 1 次提交
    • R
      A good use of the UI interface is as a password callback replacement · 1e7e62f8
      Richard Levitte 提交于
      (for new functions...).  One might still want to be able to pass down
      a user-data pointer to be used by the UI.  However, ex_data doesn't
      quite cut it, since that means the appropriate index to it might need
      to be shared between parts that aren't really related in that sense,
      and would require the currently hidden (static) index holders to be
      uncovered.  Not a good thing.  Therefore, add the possibility to add a
      user-data pointer to a UI.
      1e7e62f8
  5. 07 5月, 2001 1 次提交
  6. 20 2月, 2001 1 次提交
  7. 08 1月, 2001 1 次提交
  8. 19 3月, 2000 1 次提交
  9. 06 2月, 2000 1 次提交
  10. 05 2月, 2000 1 次提交
  11. 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
  12. 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
  13. 20 4月, 1999 1 次提交
  14. 14 2月, 1999 1 次提交
  15. 21 12月, 1998 2 次提交