Lines Matching refs:ipasc
1053 int X509_check_ip_asc(X509 *x, const char *ipasc, unsigned int flags)
1058 if (ipasc == NULL)
1060 iplen = (size_t)ossl_a2i_ipadd(ipout, ipasc);
1101 ASN1_OCTET_STRING *a2i_IPADDRESS(const char *ipasc)
1109 iplen = ossl_a2i_ipadd(ipout, ipasc);
1124 ASN1_OCTET_STRING *a2i_IPADDRESS_NC(const char *ipasc)
1131 p = strchr(ipasc, '/');
1134 iptmp = OPENSSL_strdup(ipasc);
1137 p = iptmp + (p - ipasc);
1167 int ossl_a2i_ipadd(unsigned char *ipout, const char *ipasc)
1171 if (strchr(ipasc, ':')) {
1172 if (!ipv6_from_asc(ipout, ipasc))
1176 if (!ipv4_from_asc(ipout, ipasc))