1. 04 2月, 2016 5 次提交
    • 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
      83be2778
    • R
      Refactoring BIO: Small adjustments · a5cc75d6
      Richard Levitte 提交于
      Because of the way bio_lcl.h is organised, we must not include
      internal/cryptlib.h before it.  As a matter of fact, bio_lcl.h
      includes internal/cryptlib.h on its own.
      Reviewed-by: NKurt Roeckx <kurt@openssl.org>
      a5cc75d6
    • 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
      RT4148 · ba2de73b
      Emilia Kasper 提交于
      Accept leading 0-byte in PKCS1 type 1 padding. Internally, the byte is
      stripped by BN_bn2bin but external callers may have other expectations.
      
      Reviewed-by: Kurt Roeckx<kurt@openssl.org>
      ba2de73b
  2. 03 2月, 2016 5 次提交
  3. 01 2月, 2016 12 次提交
  4. 31 1月, 2016 4 次提交
  5. 30 1月, 2016 3 次提交
  6. 29 1月, 2016 7 次提交
  7. 28 1月, 2016 4 次提交