1. 05 1月, 2011 1 次提交
  2. 24 11月, 2010 1 次提交
  3. 15 11月, 2010 1 次提交
  4. 19 7月, 2010 3 次提交
  5. 27 6月, 2010 1 次提交
  6. 12 6月, 2010 1 次提交
  7. 17 5月, 2010 1 次提交
    • D
      PR: 2259 · 7837c7ec
      Dr. Stephen Henson 提交于
      Submitted By: Artem Chuprina <ran@cryptocom.ru>
      
      Check return values of HMAC in tls_P_hash and tls1_generate_key_block.
      
      Although the previous version could in theory crash that would only happen if a
      digest call failed. The standard software methods can never fail and only one
      ENGINE currently uses digests and it is not compiled in by default.
      7837c7ec
  8. 07 12月, 2009 1 次提交
  9. 20 4月, 2009 1 次提交
  10. 12 1月, 2009 1 次提交
  11. 11 1月, 2009 1 次提交
  12. 05 1月, 2009 1 次提交
  13. 30 12月, 2008 1 次提交
  14. 27 12月, 2008 1 次提交
  15. 12 11月, 2008 1 次提交
  16. 11 11月, 2008 1 次提交
  17. 06 1月, 2008 1 次提交
  18. 26 10月, 2007 1 次提交
    • D
      1. Changes for s_client.c to make it return non-zero exit code in case · 0e1dba93
      Dr. Stephen Henson 提交于
      of handshake failure
      
      2. Changes to x509_certificate_type function (crypto/x509/x509type.c) to
      make it recognize GOST certificates as EVP_PKT_SIGN|EVP_PKT_EXCH
      (required for s3_srvr to accept GOST client certificates).
      
      3. Changes to EVP
      	- adding of function EVP_PKEY_CTX_get0_peerkey
      	- Make function EVP_PKEY_derive_set_peerkey work for context with
      	  ENCRYPT operation, because we use peerkey field in the context to
      	  pass non-ephemeral secret key to GOST encrypt operation.
      	- added EVP_PKEY_CTRL_SET_IV control command. It is really
      	  GOST-specific, but it is used in SSL code, so it has to go
      	  in some header file, available during libssl compilation
      
      4. Fix to HMAC to avoid call of OPENSSL_cleanse on undefined data
      
      5. Include des.h if KSSL_DEBUG is defined into some libssl files, to
        make debugging output which depends on constants defined there, work
        and other KSSL_DEBUG output fixes
      
      6. Declaration of real GOST ciphersuites, two authentication methods
         SSL_aGOST94 and SSL_aGOST2001 and one key exchange method SSL_kGOST
      
      7. Implementation  of these methods.
      
      8. Support for sending unsolicited serverhello extension if GOST
        ciphersuite is selected. It is require for interoperability with
        CryptoPro CSP 3.0 and 3.6 and controlled by
        SSL_OP_CRYPTOPRO_TLSEXT_BUG constant.
        This constant is added to SSL_OP_ALL, because it does nothing, if
        non-GOST ciphersuite is selected, and all implementation of GOST
        include compatibility with CryptoPro.
      
      9. Support for CertificateVerify message without length field. It is
         another CryptoPro bug, but support is made unconditional, because it
         does no harm for draft-conforming implementation.
      
      10. In tls1_mac extra copy of stream mac context is no more done.
        When I've written currently commited code I haven't read
        EVP_DigestSignFinal manual carefully enough and haven't noticed that
        it does an internal digest ctx copying.
      
      This implementation was tested against
      1. CryptoPro CSP 3.6 client and server
      2. Cryptopro CSP 3.0 server
      0e1dba93
  19. 10 10月, 2007 1 次提交
  20. 27 9月, 2007 1 次提交
  21. 21 9月, 2007 1 次提交
    • B
      Implement the Opaque PRF Input TLS extension · 761772d7
      Bodo Möller 提交于
      (draft-rescorla-tls-opaque-prf-input-00.txt), and do some cleanups and
      bugfixes on the way.  In particular, this fixes the buffer bounds
      checks in ssl_add_clienthello_tlsext() and in ssl_add_serverhello_tlsext().
      
      Note that the opaque PRF Input TLS extension is not compiled by default;
      see CHANGES.
      761772d7
  22. 31 8月, 2007 1 次提交
  23. 05 6月, 2007 1 次提交
  24. 17 2月, 2007 2 次提交
  25. 07 5月, 2006 1 次提交
  26. 11 3月, 2006 1 次提交
  27. 08 1月, 2006 3 次提交
  28. 01 10月, 2005 1 次提交
  29. 27 4月, 2005 1 次提交
  30. 28 11月, 2002 1 次提交
  31. 13 11月, 2002 1 次提交
  32. 10 7月, 2002 1 次提交
    • L
      Reorder inclusion of header files: · 7b63c0fa
      Lutz Jänicke 提交于
      des_old.h redefines crypt:
      #define crypt(b,s)\
              DES_crypt((b),(s))
      
      This scheme leads to failure, if header files with the OS's true definition
      of crypt() are processed _after_ des_old.h was processed. This is e.g. the
      case on HP-UX with unistd.h.
      As evp.h now again includes des.h (which includes des_old.h), this problem
      only came up after this modification.
      Solution: move header files (indirectly) including e_os.h before the header
      files (indirectly) including evp.h.
      Submitted by:
      Reviewed by:
      PR:
      7b63c0fa
  33. 09 7月, 2002 1 次提交
  34. 14 6月, 2002 1 次提交
  35. 14 4月, 2002 1 次提交