Home | History | Annotate | Download | only in x509

Lines Matching full:loc

89 X509_EXTENSION *X509_CRL_get_ext(X509_CRL *x, int loc)
91 return(X509v3_get_ext(x->crl->extensions,loc));
94 X509_EXTENSION *X509_CRL_delete_ext(X509_CRL *x, int loc)
96 return(X509v3_delete_ext(x->crl->extensions,loc));
110 int X509_CRL_add_ext(X509_CRL *x, X509_EXTENSION *ex, int loc)
112 return(X509v3_add_ext(&(x->crl->extensions),ex,loc) != NULL);
135 X509_EXTENSION *X509_get_ext(X509 *x, int loc)
137 return(X509v3_get_ext(x->cert_info->extensions,loc));
140 X509_EXTENSION *X509_delete_ext(X509 *x, int loc)
142 return(X509v3_delete_ext(x->cert_info->extensions,loc));
145 int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc)
147 return(X509v3_add_ext(&(x->cert_info->extensions),ex,loc) != NULL);
183 X509_EXTENSION *X509_REVOKED_get_ext(X509_REVOKED *x, int loc)
185 return(X509v3_get_ext(x->extensions,loc));
188 X509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x, int loc)
190 return(X509v3_delete_ext(x->extensions,loc));
193 int X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, int loc)
195 return(X509v3_add_ext(&(x->extensions),ex,loc) != NULL);