Home | History | Annotate | Download | only in x509

Lines Matching full:lastpos

70 int X509_CRL_get_ext_by_NID(X509_CRL *x, int nid, int lastpos)
72 return (X509v3_get_ext_by_NID(x->crl->extensions, nid, lastpos));
75 int X509_CRL_get_ext_by_OBJ(X509_CRL *x, ASN1_OBJECT *obj, int lastpos)
77 return (X509v3_get_ext_by_OBJ(x->crl->extensions, obj, lastpos));
80 int X509_CRL_get_ext_by_critical(X509_CRL *x, int crit, int lastpos)
82 return (X509v3_get_ext_by_critical(x->crl->extensions, crit, lastpos));
116 int X509_get_ext_by_NID(X509 *x, int nid, int lastpos)
118 return (X509v3_get_ext_by_NID(x->cert_info->extensions, nid, lastpos));
121 int X509_get_ext_by_OBJ(X509 *x, ASN1_OBJECT *obj, int lastpos)
123 return (X509v3_get_ext_by_OBJ(x->cert_info->extensions, obj, lastpos));
126 int X509_get_ext_by_critical(X509 *x, int crit, int lastpos)
129 (x->cert_info->extensions, crit, lastpos));
164 int X509_REVOKED_get_ext_by_NID(X509_REVOKED *x, int nid, int lastpos)
166 return (X509v3_get_ext_by_NID(x->extensions, nid, lastpos));
170 int lastpos)
172 return (X509v3_get_ext_by_OBJ(x->extensions, obj, lastpos));
175 int X509_REVOKED_get_ext_by_critical(X509_REVOKED *x, int crit, int lastpos)
177 return (X509v3_get_ext_by_critical(x->extensions, crit, lastpos));