Lines Matching defs:ext
242 sbgp_assysnum(const char *fn, struct cert *cert, X509_EXTENSION *ext)
247 if (!X509_EXTENSION_get_critical(ext)) {
253 if ((asidentifiers = X509V3_EXT_d2i(ext)) == NULL) {
467 sbgp_ipaddrblk(const char *fn, struct cert *cert, X509_EXTENSION *ext)
472 if (!X509_EXTENSION_get_critical(ext)) {
478 if ((addrblk = X509V3_EXT_d2i(ext)) == NULL) {
504 sbgp_sia(const char *fn, struct cert *cert, X509_EXTENSION *ext)
515 if (X509_EXTENSION_get_critical(ext)) {
521 if ((sia = X509V3_EXT_d2i(ext)) == NULL) {
642 certificate_policies(const char *fn, struct cert *cert, X509_EXTENSION *ext)
651 if (!X509_EXTENSION_get_critical(ext)) {
657 if ((policies = X509V3_EXT_d2i(ext)) == NULL) {
745 X509_EXTENSION *ext;
769 if ((ext = X509_get_ext(x, index)) != NULL) {
770 if (!sbgp_ipaddrblk(fn, cert, ext))
775 if ((ext = X509_get_ext(x, index)) != NULL) {
776 if (!sbgp_assysnum(fn, cert, ext))
811 X509_EXTENSION *ext = NULL;
875 ext = X509_get_ext(x, i);
876 assert(ext != NULL);
877 obj = X509_EXTENSION_get_object(ext);
884 if (!sbgp_ipaddrblk(fn, cert, ext))
890 if (!sbgp_assysnum(fn, cert, ext))
900 if (!sbgp_sia(fn, cert, ext))
906 if (!certificate_policies(fn, cert, ext))