search for: cert_ip

Displaying 1 result from an estimated 1 matches for "cert_ip".

2017 Jan 02
1
[PATCH] Use ASN1_STRING_get0_data for openssl-1.1.0
...eck the pattern for embedded NULs.*/ if(OP_UNLIKELY(pattern_len!=(size_t)ASN1_STRING_length(_pattern)))return 0; @@ -1805,7 +1808,7 @@ static int op_http_verify_hostname(OpusHTTPStream *_stream,SSL *_ssl_conn){ } } else if(name->type==GEN_IPADD){ - unsigned char *cert_ip; + unsigned const char *cert_ip; /*If we do have an IP address, compare it directly. RFC 6125: "When the reference identity is an IP address, the identity MUST be converted to the 'network byte order' octet string @@ -1818,7 +1821,7 @@ static int...