summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2009-06-02 08:43:06 +0200
committerSimon Josefsson <simon@josefsson.org>2009-06-02 08:43:06 +0200
commit5555b96fadce41d925e023a600480650df01c1e4 (patch)
tree6b3d15a5065c16991072c9a9c57e983680d516fa /tests
parent715cd2bcb8e2dc735ae9eec02153366f43b474aa (diff)
downloadgnutls-5555b96fadce41d925e023a600480650df01c1e4.tar.gz
Add.
Diffstat (limited to 'tests')
-rw-r--r--tests/crq_apis.c131
1 files changed, 131 insertions, 0 deletions
diff --git a/tests/crq_apis.c b/tests/crq_apis.c
new file mode 100644
index 0000000000..a5f62a7171
--- /dev/null
+++ b/tests/crq_apis.c
@@ -0,0 +1,131 @@
+/*
+ * Copyright (C) 2008, 2009 Free Software Foundation
+ *
+ * Author: Simon Josefsson
+ *
+ * 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
+ */
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <gnutls/gnutls.h>
+#include <gnutls/x509.h>
+
+#include "utils.h"
+
+static void
+tls_log_func (int level, const char *str)
+{
+ fprintf (stderr, "%s |<%d>| %s", "crq_key_id", level, str);
+}
+
+static unsigned char key_pem[] =
+ "-----BEGIN RSA PRIVATE KEY-----\n"
+ "MIICXAIBAAKBgQC7ZkP18sXXtozMxd/1iDuxyUtqDqGtIFBACIChT1yj0Phsz+Y8\n"
+ "9+wEdhMXi2SJIlvA3VN8O+18BLuAuSi+jpvGjqClEsv1Vx6i57u3M0mf47tKrmpN\n"
+ "aP/JEeIyjc49gAuNde/YAIGPKAQDoCKNYQQH+rY3fSEHSdIJYWmYkKNYqQIDAQAB\n"
+ "AoGADpmARG5CQxS+AesNkGmpauepiCz1JBF/JwnyiX6vEzUh0Ypd39SZztwrDxvF\n"
+ "PJjQaKVljml1zkJpIDVsqvHdyVdse8M+Qn6hw4x2p5rogdvhhIL1mdWo7jWeVJTF\n"
+ "RKB7zLdMPs3ySdtcIQaF9nUAQ2KJEvldkO3m/bRJFEp54k0CQQDYy+RlTmwRD6hy\n"
+ "7UtMjR0H3CSZJeQ8svMCxHLmOluG9H1UKk55ZBYfRTsXniqUkJBZ5wuV1L+pR9EK\n"
+ "ca89a+1VAkEA3UmBelwEv2u9cAU1QjKjmwju1JgXbrjEohK+3B5y0ESEXPAwNQT9\n"
+ "TrDM1m9AyxYTWLxX93dI5QwNFJtmbtjeBQJARSCWXhsoaDRG8QZrCSjBxfzTCqZD\n"
+ "ZXtl807ymCipgJm60LiAt0JLr4LiucAsMZz6+j+quQbSakbFCACB8SLV1QJBAKZQ\n"
+ "YKf+EPNtnmta/rRKKvySsi3GQZZN+Dt3q0r094XgeTsAqrqujVNfPhTMeP4qEVBX\n"
+ "/iVX2cmMTSh3w3z8MaECQEp0XJWDVKOwcTW6Ajp9SowtmiZ3YDYo1LF9igb4iaLv\n"
+ "sWZGfbnU3ryjvkb6YuFjgtzbZDZHWQCo8/cOtOBmPdk=\n"
+ "-----END RSA PRIVATE KEY-----\n";
+const gnutls_datum_t key = { key_pem, sizeof (key_pem) };
+
+void doit (void)
+{
+ gnutls_x509_privkey_t pkey;
+ gnutls_x509_crq_t crq;
+
+ gnutls_datum_t out;
+
+ size_t s = 0;
+
+ int ret;
+
+ ret = gnutls_global_init ();
+ if (ret < 0)
+ fail ("gnutls_global_init\n");
+
+ gnutls_global_set_log_function (tls_log_func);
+ gnutls_global_set_log_level (4711);
+
+ ret = gnutls_x509_crq_init (&crq);
+ if (ret != 0)
+ fail ("gnutls_global_init\n");
+
+ ret = gnutls_x509_privkey_init (&pkey);
+ if (ret != 0)
+ fail ("gnutls_global_init\n");
+
+ ret = gnutls_x509_privkey_import (pkey, &key, GNUTLS_X509_FMT_PEM);
+ if (ret != 0)
+ fail ("gnutls_global_init\n");
+
+ ret = gnutls_x509_crq_set_version (crq, 0);
+ if (ret != 0)
+ fail ("gnutls_x509_crq_set_version\n");
+
+ ret = gnutls_x509_crq_set_key (crq, pkey);
+ if (ret != 0)
+ fail ("gnutls_x509_crq_set_key\n");
+
+ s = 0;
+ ret = gnutls_x509_crq_get_extension_info (crq, 0, NULL, &s, NULL);
+ if (ret != GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE)
+ fail ("gnutls_x509_crq_get_extension_info\n");
+
+ ret = gnutls_x509_crq_set_basic_constraints (crq, 0, 0);
+ if (ret != 0)
+ fail ("gnutls_x509_crq_set_basic_constraints %d\n", ret);
+
+ ret = gnutls_x509_crq_set_key_usage (crq, 0);
+ if (ret != 0)
+ fail ("gnutls_x509_crq_set_key_usage %d\n", ret);
+
+ s = 0;
+ ret = gnutls_x509_crq_get_extension_info (crq, 0, NULL, &s, NULL);
+ if (ret != 0)
+ fail ("gnutls_x509_crq_get_extension_info2\n");
+
+#if 0
+ ret = gnutls_x509_crq_get_extension_data (crq, 0, NULL, &s);
+ if (ret != 0)
+ fail ("gnutls_x509_crq_get_extension_data\n");
+#endif
+
+ ret = gnutls_x509_crq_print (crq, GNUTLS_CRT_PRINT_FULL, &out);
+ if (ret != 0)
+ fail ("gnutls_x509_crq_print\n");
+ printf ("crq: %.*s\n", out.size, out.data);
+ gnutls_free (out.data);
+
+ gnutls_x509_crq_deinit (crq);
+ gnutls_x509_privkey_deinit (pkey);
+
+ gnutls_global_deinit ();
+}