Home | History | Annotate | Download | only in x509v3

Lines Matching refs:nid

97 const X509V3_EXT_METHOD *X509V3_EXT_get_nid(int nid)
102 if(nid < 0) return NULL;
103 tmp.ext_nid = nid;
114 int nid;
115 if((nid = OBJ_obj2nid(ext->object)) == NID_undef) return NULL;
116 return X509V3_EXT_get_nid(nid);
179 /* Get critical flag and decoded version of extension from a NID.
181 * be used to retrieve multiple extensions of the same NID.
182 * However multiple extensions with the same NID is usually
194 void *X509V3_get_d2i(STACK_OF(X509_EXTENSION) *x, int nid, int *crit, int *idx)
209 if(OBJ_obj2nid(ex->object) == nid) {
239 int X509V3_add1_i2d(STACK_OF(X509_EXTENSION) **x, int nid, void *value,
251 extidx = X509v3_get_ext_by_NID(*x, nid, -1);
283 ext = X509V3_EXT_i2d(nid, crit, value);