]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
Added, lost part of Joe's original gnutls_x509_dn_export patch.
authorSimon Josefsson <simon@josefsson.org>
Mon, 25 Feb 2008 10:26:35 +0000 (11:26 +0100)
committerSimon Josefsson <simon@josefsson.org>
Mon, 25 Feb 2008 10:26:35 +0000 (11:26 +0100)
tests/moredn.c [new file with mode: 0644]

diff --git a/tests/moredn.c b/tests/moredn.c
new file mode 100644 (file)
index 0000000..9226a5a
--- /dev/null
@@ -0,0 +1,122 @@
+/*
+ * Copyright (C) 2008 Free Software Foundation
+ *
+ * Author: Joe Orton
+ *
+ * This file is part of GNUTLS.
+ *
+ * GNUTLS is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * GNUTLS is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GNUTLS; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+/* Parts copied from GnuTLS example programs. */
+
+#if HAVE_CONFIG_H
+# include <config.h>
+#endif
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <sys/types.h>
+#include <unistd.h>
+
+#include <gnutls/gnutls.h>
+#include <gnutls/x509.h>
+
+#include "utils.h"
+
+static const char cert_pem[] =
+  "-----BEGIN CERTIFICATE-----\n"
+  "MIICHjCCAYmgAwIBAgIERiYdNzALBgkqhkiG9w0BAQUwGTEXMBUGA1UEAxMOR251\n"
+  "VExTIHRlc3QgQ0EwHhcNMDcwNDE4MTMyOTI3WhcNMDgwNDE3MTMyOTI3WjAdMRsw\n"
+  "GQYDVQQDExJHbnVUTFMgdGVzdCBjbGllbnQwgZwwCwYJKoZIhvcNAQEBA4GMADCB\n"
+  "iAKBgLtmQ/Xyxde2jMzF3/WIO7HJS2oOoa0gUEAIgKFPXKPQ+GzP5jz37AR2ExeL\n"
+  "ZIkiW8DdU3w77XwEu4C5KL6Om8aOoKUSy/VXHqLnu7czSZ/ju0quak1o/8kR4jKN\n"
+  "zj2AC41179gAgY8oBAOgIo1hBAf6tjd9IQdJ0glhaZiQo1ipAgMBAAGjdjB0MAwG\n"
+  "A1UdEwEB/wQCMAAwEwYDVR0lBAwwCgYIKwYBBQUHAwIwDwYDVR0PAQH/BAUDAweg\n"
+  "ADAdBgNVHQ4EFgQUTLkKm/odNON+3svSBxX+odrLaJEwHwYDVR0jBBgwFoAU6Twc\n"
+  "+62SbuYGpFYsouHAUyfI8pUwCwYJKoZIhvcNAQEFA4GBALujmBJVZnvaTXr9cFRJ\n"
+  "jpfc/3X7sLUsMvumcDE01ls/cG5mIatmiyEU9qI3jbgUf82z23ON/acwJf875D3/\n"
+  "U7jyOsBJ44SEQITbin2yUeJMIm1tievvdNXBDfW95AM507ShzP12sfiJkJfjjdhy\n"
+  "dc8Siq5JojruiMizAf0pA7in\n"
+  "-----END CERTIFICATE-----\n";
+static const gnutls_datum_t cert_datum = { (char *)cert_pem,
+                                          sizeof (cert_pem) };
+
+void
+doit (void)
+{
+
+  gnutls_global_init ();
+  gnutls_x509_crt_t cert;
+  gnutls_x509_dn_t sdn, dn2;
+  unsigned char buf[8192], buf2[8192];
+  size_t buflen, buf2len;
+  gnutls_datum_t datum;
+  int rv;
+
+  if (gnutls_x509_crt_init(&cert) == 0)
+    success ("success: cert init\n");
+  else
+    fail ("cert init failure\n");
+
+  if (gnutls_x509_crt_import (cert, &cert_datum, GNUTLS_X509_FMT_PEM) == 0)
+    success ("success: imported PEM cert\n");
+  else
+    fail ("FAIL: could not import PEM cert\n");
+
+  if (gnutls_x509_crt_get_subject (cert, &sdn) == 0)
+    success ("success: got subject DN.\n");
+  else
+    fail ("FAIL: could not get subject DN.\n");
+
+  buflen = sizeof buf;
+  rv = gnutls_x509_dn_export (sdn, GNUTLS_X509_FMT_DER, buf, &buflen);
+  if (rv == 0)
+    success ("success: exported subject DN.\n");
+  else
+    fail ("FAIL: could not export subject DN: %s\n",
+         gnutls_strerror (rv));
+
+  if (gnutls_x509_dn_init (&dn2) == 0)
+    success ("success: init DN.\n");
+  else
+    fail ("FAIL: DN init.\n");
+
+  datum.data = buf;
+  datum.size = buflen;
+
+  if (gnutls_x509_dn_import (dn2, &datum) == 0)
+    success ("success: re-import subject DN.\n");
+  else
+    fail ("FAIL: re-import subject DN.\n");
+
+  buf2len = sizeof buf2;
+  rv = gnutls_x509_dn_export (dn2, GNUTLS_X509_FMT_DER, buf2, &buf2len);
+  if (rv == 0)
+    success ("success: exported subject DN.\n");
+  else
+    fail ("FAIL: could not export subject DN: %s\n",
+         gnutls_strerror (rv));
+
+  if (buflen == buf2len && memcmp (buf, buf2, buflen) == 0)
+    success ("success: export/import/export match.\n");
+  else
+    fail ("FAIL: export/import/export differ.\n");
+
+  gnutls_x509_dn_deinit (dn2);
+
+  gnutls_x509_crt_deinit (cert);
+}