Home | History | Annotate | Download | only in x509

Lines Matching full:x509

1 /* crypto/x509/x509_lu.c */
62 #include <openssl/x509.h>
166 ret=X509_subject_name_cmp((*a)->data.x509,(*b)->data.x509);
218 X509_free(a->data.x509);
334 int X509_STORE_add_cert(X509_STORE *ctx, X509 *x)
347 obj->data.x509=x;
405 CRYPTO_add(&a->data.x509->references,1,CRYPTO_LOCK_X509);
418 X509_free(a->data.x509);
430 X509 x509_s;
440 stmp.data.x509= &x509_s;
488 STACK_OF(X509)* X509_STORE_get1_certs(X509_STORE_CTX *ctx, X509_NAME *nm)
491 STACK_OF(X509) *sk;
492 X509 *x;
522 x = obj->data.x509;
598 if (!X509_cmp(obj->data.x509, x->data.x509))
624 int X509_STORE_CTX_get1_issuer(X509 **issuer, X509_STORE_CTX *ctx, X509 *x)
648 if (ctx->check_issued(ctx, x, obj.data.x509))
650 *issuer = obj.data.x509;
668 if (X509_NAME_cmp(xn, X509_get_subject_name(pobj->data.x509)))
670 if (ctx->check_issued(ctx, x, pobj->data.x509))
672 *issuer = pobj->data.x509;