Home | History | Annotate | Download | only in racoon

Lines Matching refs:cert

461 eay_check_x509cert(cert, CApath, CAfile, local)
462 vchar_t *cert;
530 x509 = mem2x509(cert);
650 eay_get_x509asn1subjectname(cert)
651 vchar_t *cert;
658 bp = (unsigned char *) cert->v;
660 x509 = mem2x509(cert);
694 eay_get_x509subjectaltname(cert, altname, type, pos)
695 vchar_t *cert;
709 x509 = mem2x509(cert);
799 eay_get_x509text(cert)
800 vchar_t *cert;
809 x509 = mem2x509(cert);
854 mem2x509(cert)
855 vchar_t *cert;
863 bp = (unsigned char *) cert->v;
865 x509 = d2i_X509(NULL, (void *)&bp, cert->l);
875 len = BIO_write(bio, cert->v, cert->l);
892 * other is the cert.
900 vchar_t *cert;
929 cert = vmalloc(len);
930 if (cert == NULL) {
934 bp = (unsigned char *) cert->v;
939 vfree(cert);
943 return cert;
948 * XXX: to be get hash type from my cert ?
954 eay_check_x509sign(source, sig, cert)
957 vchar_t *cert;
964 bp = (unsigned char *) cert->v;
966 x509 = d2i_X509(NULL, (void *)&bp, cert->l);