1. 06 2月, 2016 7 次提交
  2. 04 2月, 2016 5 次提交
    • D
      Add ec -check option · 7565cbc4
      Dr. Stephen Henson 提交于
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      7565cbc4
    • R
      417be660
    • R
      Refactoring BIO: new socket-handling functions, deprecate older ones · d33b215b
      Richard Levitte 提交于
      Added functions:
      
      BIO_socket
      BIO_connect
      BIO_listen
      BIO_accept_ex
      BIO_closesocket
      BIO_sock_info
      
      These get deprecated:
      
      BIO_gethostbyname
      BIO_get_port
      BIO_get_host_ip
      BIO_get_accept_socket
      BIO_accept
      Reviewed-by: NKurt Roeckx <kurt@openssl.org>
      d33b215b
    • R
      Refactoring BIO: add wrappers around sockaddr et al · 28a0841b
      Richard Levitte 提交于
      Because different platforms have different levels of support for IPv6,
      different kinds of sockaddr variants, and some have getaddrinfo et al
      while others don't, we could end up with a mess if ifdefs, duplicate
      code and other maintainance nightmares.
      
      Instead, we're introducing wrappers around the common form for socket
      communication:
      BIO_ADDR, closely related to struct sockaddr and some of its variants.
      BIO_ADDRINFO, closely related to struct addrinfo.
      
      With that comes support routines, both convenient creators and
      accessors, plus a few utility functions:
      
      BIO_parse_hostserv, takes a string of the form host:service and
      splits it into host and service.  It checks for * in both parts, and
      converts any [ipv6-address] syntax to ust the IPv6 address.
      
      BIO_lookup, looks up information on a host.
      
      All routines handle IPv4 (AF_INET) and IPv6 (AF_INET6) addresses, and
      there is support for local sockets (AF_UNIX) as well.
      Reviewed-by: NKurt Roeckx <kurt@openssl.org>
      28a0841b
    • E
      RT3234: disable compression · dc5744cb
      Emilia Kasper 提交于
      CRIME protection: disable compression by default, even if OpenSSL is
      compiled with zlib enabled. Applications can still enable compression by
      calling SSL_CTX_clear_options(ctx, SSL_OP_NO_COMPRESSION), or by using
      the SSL_CONF library to configure compression. SSL_CONF continues to
      work as before:
      
      SSL_CONF_cmd(ctx, "Options", "Compression") enables compression.
      
      SSL_CONF_cmd(ctx, "Options", "-Compression") disables compression (now
      no-op by default).
      
      The command-line switch has changed from -no_comp to -comp.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      dc5744cb
  3. 03 2月, 2016 3 次提交
  4. 02 2月, 2016 1 次提交
  5. 01 2月, 2016 6 次提交
  6. 31 1月, 2016 1 次提交
  7. 28 1月, 2016 1 次提交
  8. 27 1月, 2016 1 次提交
  9. 26 1月, 2016 1 次提交
  10. 23 1月, 2016 1 次提交
  11. 21 1月, 2016 1 次提交
    • V
      Multiple -trusted/-untrusted/-CRLfile options in verify · feb2f53e
      Viktor Dukhovni 提交于
      It is sometimes useful (especially in automated tests) to supply
      multiple trusted or untrusted certificates via separate files rather
      than have to prepare a single file containing them all.
      
      To that end, change verify(1) to accept these options zero or more
      times.  Also automatically set -no-CAfile and -no-CApath when
      -trusted is specified.
      
      Improve verify(1) documentation, which could still use some work.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      feb2f53e
  12. 19 1月, 2016 1 次提交
  13. 18 1月, 2016 1 次提交
  14. 17 1月, 2016 2 次提交
  15. 15 1月, 2016 1 次提交
  16. 14 1月, 2016 1 次提交
    • R
      Add CRYPTO_EX_DATA; remove EC_EXTRA_DATA · 3aef36ff
      Rich Salz 提交于
      Add CRYPTO_EX_DATA add EndC_KEY_[gs]et_method, From Roumen Petrov.
      Had to add various exdata calls to init/copy/free the exdata.
      Had to remove const from some EC functions because exdata isn't
      const-correct. :(
      Also remove EC_EXTRA_DATA and use a union to hold the possible
      pre-computed values and an enum to tell which value is in the
      union. (Rich Salz)
      Reviewed-by: NDr. Stephen Henson <steve@openssl.org>
      3aef36ff
  17. 12 1月, 2016 2 次提交
  18. 11 1月, 2016 3 次提交
  19. 10 1月, 2016 1 次提交