1. 18 8月, 2000 4 次提交
  2. 17 8月, 2000 2 次提交
  3. 16 8月, 2000 1 次提交
  4. 15 8月, 2000 1 次提交
  5. 14 8月, 2000 2 次提交
  6. 12 8月, 2000 3 次提交
  7. 11 8月, 2000 1 次提交
    • R
      Abdelilah Essiari <aes@george.lbl.gov> reports that for very small · 35140f33
      Richard Levitte 提交于
      records, EVP_EncodeUpdate() may misbehave.  This happens when there's
      a record boundary between the two ending b64 equal signs, which makes
      EVP_EncodeUpdate think there has been more than one EOF, and therefore
      add an extra NUL at the end of the output buffer.  This fix corrects
      that problem.
      35140f33
  8. 10 8月, 2000 1 次提交
  9. 08 8月, 2000 1 次提交
  10. 07 8月, 2000 1 次提交
  11. 06 8月, 2000 1 次提交
  12. 04 8月, 2000 4 次提交
  13. 03 8月, 2000 1 次提交
  14. 02 8月, 2000 9 次提交
  15. 01 8月, 2000 2 次提交
  16. 31 7月, 2000 1 次提交
  17. 30 7月, 2000 3 次提交
    • D
      · bd4e1527
      Dr. Stephen Henson 提交于
      Document the new DN printing options.
      
      Change a few names to be more meaningful.
      
      Fix typos in CA.pl docs.
      bd4e1527
    • B
      Document rollback issues. · aa826d88
      Bodo Möller 提交于
      aa826d88
    • B
      Fix SSL 2.0 rollback checking: The previous implementation of the · 37569e64
      Bodo Möller 提交于
      test was never triggered due to an off-by-one error.
      
      In s23_clnt.c, don't use special rollback-attack detection padding
      (RSA_SSLV23_PADDING) if SSL 2.0 is the only protocol enabled in the
      client; similarly, in s23_srvr.c, don't do the rollback check if
      SSL 2.0 is the only protocol enabled in the server.
      37569e64
  18. 28 7月, 2000 2 次提交
    • D
      · a657546f
      Dr. Stephen Henson 提交于
      New ASN1_STRING_print_ex() and X509_NAME_print_ex()
      functions. These are intended to be replacements
      for the ancient ASN1_STRING_print() and X509_NAME_print()
      functions.
      
      The new functions support RFC2253 and various pretty
      printing options. It is also possible to display
      international characters if the terminal properly handles
      UTF8 encoding (Linux seems to tolerate this if the
      "unicode_start" script is run).
      
      Still needs to be documented, integrated into other
      utilities and extensively tested.
      a657546f
    • R
      There's a slight possibility that a is 0 in BN_sub_word(), and might · 8083e1bd
      Richard Levitte 提交于
      therefore have unallocated parts.  Therefore, a check for the 0 case
      is needed, resulting with the same thing as when a is negative.
      8083e1bd