1. 30 Nov, 2013 1 commit
  2. 29 Nov, 2013 1 commit
  3. 27 Nov, 2013 3 commits
  4. 18 Nov, 2013 2 commits
  5. 17 Nov, 2013 1 commit
  6. 14 Nov, 2013 2 commits
  7. 13 Nov, 2013 4 commits
    • Dr. Stephen Henson's avatar
      Flag to disable automatic copying of contexts. · afa23c46
      Dr. Stephen Henson authored
      Some functions such as EVP_VerifyFinal only finalise a copy of the passed
      context in case an application wants to digest more data. Doing this when
      it is not needed is inefficient and many applications don't require it.
      
      For compatibility the default is to still finalise a copy unless the
      flag EVP_MD_CTX_FLAG_FINALISE is set in which case the passed
      context is finalised an *no* further data can be digested after
      finalisation.
      afa23c46
    • Dr. Stephen Henson's avatar
      Allow match selecting of current certificate. · 629b640b
      Dr. Stephen Henson authored
      If pointer comparison for current certificate fails check
      to see if a match using X509_cmp succeeds for the current
      certificate: this is useful for cases where the certificate
      pointer is not available.
      629b640b
    • Rob Stradling's avatar
      Additional "chain_cert" functions. · 7b6b246f
      Rob Stradling authored
      PR#3169
      
      This patch, which currently applies successfully against master and
      1_0_2, adds the following functions:
      
      SSL_[CTX_]select_current_cert() - set the current certificate without
      disturbing the existing structure.
      
      SSL_[CTX_]get0_chain_certs() - get the current certificate's chain.
      
      SSL_[CTX_]clear_chain_certs() - clear the current certificate's chain.
      
      The patch also adds these functions to, and fixes some existing errors
      in, SSL_CTX_add1_chain_cert.pod.
      7b6b246f
    • Krzysztof Kwiatkowski's avatar
      Delete duplicate entry. · 44314cf6
      Krzysztof Kwiatkowski authored
      PR#3172
      44314cf6
  8. 12 Nov, 2013 4 commits
  9. 11 Nov, 2013 3 commits
  10. 10 Nov, 2013 2 commits
  11. 09 Nov, 2013 5 commits
  12. 08 Nov, 2013 2 commits
  13. 06 Nov, 2013 4 commits
  14. 03 Nov, 2013 1 commit
  15. 02 Nov, 2013 1 commit
  16. 01 Nov, 2013 4 commits
    • Robin Seggelmann's avatar
      DTLS/SCTP struct authchunks Bug · b8140811
      Robin Seggelmann authored
      PR: 2809
      
      DTLS/SCTP requires DATA and FORWARD-TSN chunks to be protected with
      SCTP-AUTH.  It is checked if this has been activated successfully for
      the local and remote peer. Due to a bug, however, the
      gauth_number_of_chunks field of the authchunks struct is missing on
      FreeBSD, and was therefore not considered in the OpenSSL implementation.
      This patch sets the corresponding pointer for the check correctly
      whether or not this bug is present.
      (cherry picked from commit f596e3c4)
      b8140811
    • Robin Seggelmann's avatar
      DTLS/SCTP Finished Auth Bug · b9ef52b0
      Robin Seggelmann authored
      PR: 2808
      
      With DTLS/SCTP the SCTP extension SCTP-AUTH is used to protect DATA and
      FORWARD-TSN chunks. The key for this extension is derived from the
      master secret and changed with the next ChangeCipherSpec, whenever a new
      key has been negotiated. The following Finished then already uses the
      new key.  Unfortunately, the ChangeCipherSpec and Finished are part of
      the same flight as the ClientKeyExchange, which is necessary for the
      computation of the new secret. Hence, these messages are sent
      immediately following each other, leaving the server very little time to
      compute the new secret and pass it to SCTP before the finished arrives.
      So the Finished is likely to be discarded by SCTP and a retransmission
      becomes necessary. To prevent this issue, the Finished of the client is
      still sent with the old key.
      (cherry picked from commit 9fb523ad)
      b9ef52b0
    • Piotr Sikora's avatar
      Fix SSL_OP_SINGLE_ECDH_USE · 29b490a4
      Piotr Sikora authored
      Don't require a public key in tls1_set_ec_id if compression status is
      not needed. This fixes a bug where SSL_OP_SINGLE_ECDH_USE wouldn't work.
      (cherry picked from commit 5ff68e8f)
      29b490a4
    • Dr. Stephen Henson's avatar
      Add -ecdh_single option. · a9bc1af9
      Dr. Stephen Henson authored
      Add -ecdh_single option to set SSL_OP_SINGLE_ECDH_USE on the command line.
      (cherry picked from commit f14a4a86)
      a9bc1af9