1. 25 2月, 2015 1 次提交
    • R
      Move build config table to separate files. · f09e7ca9
      Rich Salz 提交于
      Move the build configuration table into separate files.  The Configurations
      file is standard configs, and Configurations.team is for openssl-team
      members.  Any other file, Configurations*, found in the same directory
      as the Configure script, is loaded.
      
      To add another file, use --config=FILE flags (which should probably be
      an absolute path).
      
      Written by Stefen Eissing <stefan.eissing@greenbytes.de> and Rich Salz
      <rsalz@openssl.org>, contributed by Akamai Technologies.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      f09e7ca9
  2. 24 2月, 2015 4 次提交
  3. 23 2月, 2015 3 次提交
  4. 22 2月, 2015 6 次提交
  5. 21 2月, 2015 1 次提交
  6. 19 2月, 2015 1 次提交
  7. 15 2月, 2015 1 次提交
  8. 13 2月, 2015 16 次提交
  9. 12 2月, 2015 4 次提交
  10. 11 2月, 2015 3 次提交
    • M
      Add SSL_SESSION_get0_ticket API function. · b7c9187b
      Matt Caswell 提交于
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      b7c9187b
    • M
      Correct reading back of tlsext_tick_lifetime_hint from ASN1. · ea6bd264
      Matt Caswell 提交于
      When writing out the hint, if the hint > 0, then we write it out otherwise
      we skip it.
      
      Previously when reading the hint back in, if were expecting to see one
      (because the ticket length > 0), but it wasn't present then we set the hint
      to -1, otherwise we set it to 0. This fails to set the hint to the same as
      when it was written out.
      
      The hint should never be negative because the RFC states the hint is
      unsigned. It is valid for a server to set the hint to 0 (this means the
      lifetime is unspecified according to the RFC). If the server set it to 0, it
      should still be 0 when we read it back in.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      ea6bd264
    • M
      Provide the API functions SSL_SESSION_has_ticket and · f2baac27
      Matt Caswell 提交于
      SSL_SESSION_get_ticket_lifetime_hint. The latter has been reported as
      required to fix Qt for OpenSSL 1.1.0. I have also added the former in order
      to determine whether a ticket is present or not - otherwise it is difficult
      to know whether a zero lifetime hint is because the server set it to 0, or
      because there is no ticket.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      f2baac27