Home | History | Annotate | Download | only in racoon

Lines Matching refs:cert

455 eay_check_x509cert(cert, CApath, CAfile, local)
456 vchar_t *cert;
524 x509 = mem2x509(cert);
644 eay_get_x509asn1subjectname(cert)
645 vchar_t *cert;
652 bp = (unsigned char *) cert->v;
654 x509 = mem2x509(cert);
688 eay_get_x509subjectaltname(cert, altname, type, pos)
689 vchar_t *cert;
703 x509 = mem2x509(cert);
793 eay_get_x509text(cert)
794 vchar_t *cert;
803 x509 = mem2x509(cert);
844 mem2x509(cert)
845 vchar_t *cert;
853 bp = (unsigned char *) cert->v;
855 x509 = d2i_X509(NULL, (void *)&bp, cert->l);
865 len = BIO_write(bio, cert->v, cert->l);
882 * other is the cert.
890 vchar_t *cert;
919 cert = vmalloc(len);
920 if (cert == NULL) {
924 bp = (unsigned char *) cert->v;
929 vfree(cert);
933 return cert;
938 * XXX: to be get hash type from my cert ?
944 eay_check_x509sign(source, sig, cert)
947 vchar_t *cert;
954 bp = (unsigned char *) cert->v;
956 x509 = d2i_X509(NULL, (void *)&bp, cert->l);