diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2016-05-06 16:04:31 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2016-05-06 16:04:31 +0200 |
commit | d6691a1fd2e0177c6e8a5c31b367226149a1b811 (patch) | |
tree | d5fcec72def7872461b6883b69da0bc18bca1037 /tests/crt_apis.c | |
parent | 66b8796c8fa5432e4729c1b28e8ed669d4086847 (diff) | |
download | gnutls-d6691a1fd2e0177c6e8a5c31b367226149a1b811.tar.gz |
tests: added checks for certificate generation APIs
Diffstat (limited to 'tests/crt_apis.c')
-rw-r--r-- | tests/crt_apis.c | 235 |
1 files changed, 235 insertions, 0 deletions
diff --git a/tests/crt_apis.c b/tests/crt_apis.c new file mode 100644 index 0000000000..f85e6798da --- /dev/null +++ b/tests/crt_apis.c @@ -0,0 +1,235 @@ +/* + * Copyright (C) 2008-2016 Free Software Foundation, Inc. + * Copyright (C) 2016 Red Hat, Inc. + * + * Author: Nikos Mavrogiannopoulos + * + * 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 <time.h> +#include <string.h> +#include <gnutls/gnutls.h> +#include <gnutls/x509.h> + +#include "utils.h" + +#include "cert-common.h" + +static void tls_log_func(int level, const char *str) +{ + fprintf(stderr, "|<%d>| %s", level, str); +} + +void doit(void) +{ + gnutls_x509_privkey_t pkey; + gnutls_x509_crt_t crt; + gnutls_x509_crt_t crt2; + const char *err = NULL; + gnutls_datum_t out; + size_t s = 0; + int ret; + + ret = global_init(); + if (ret < 0) + fail("global_init\n"); + + gnutls_global_set_log_function(tls_log_func); + if (debug) + gnutls_global_set_log_level(4711); + + ret = gnutls_x509_crt_init(&crt); + if (ret != 0) + fail("gnutls_x509_crt_init\n"); + + ret = gnutls_x509_crt_init(&crt2); + if (ret != 0) + fail("gnutls_x509_crt_init\n"); + + ret = gnutls_x509_crt_import(crt2, &server_ecc_cert, GNUTLS_X509_FMT_PEM); + if (ret != 0) + fail("gnutls_x509_crt_import\n"); + + ret = gnutls_x509_privkey_init(&pkey); + if (ret != 0) + fail("gnutls_x509_privkey_init\n"); + + ret = gnutls_x509_privkey_import(pkey, &key_dat, GNUTLS_X509_FMT_PEM); + if (ret != 0) + fail("gnutls_x509_privkey_import\n"); + + /* Setup CRT */ + + ret = gnutls_x509_crt_set_version(crt, 3); + if (ret != 0) + fail("gnutls_x509_crt_set_version\n"); + + ret = gnutls_x509_crt_set_serial(crt, "\x0a\x11\x00", 3); + if (ret != 0) + fail("gnutls_x509_crt_set_serial\n"); + + ret = gnutls_x509_crt_set_expiration_time(crt, -1); + if (ret != 0) + fail("error\n"); + + ret = gnutls_x509_crt_set_activation_time(crt, time(0)); + if (ret != 0) + fail("error\n"); + + ret = gnutls_x509_crt_set_key(crt, pkey); + if (ret != 0) + fail("gnutls_x509_crt_set_key\n"); + + ret = gnutls_x509_crt_set_basic_constraints(crt, 0, -1); + if (ret < 0) { + fail("error\n"); + } + + ret = gnutls_x509_crt_set_key_usage(crt, GNUTLS_KEY_DIGITAL_SIGNATURE); + if (ret != 0) + fail("gnutls_x509_crt_set_key_usage %d\n", ret); + + ret = gnutls_x509_crt_set_dn(crt, "cn = nikos, o = none to\\, mention", &err); + if (ret < 0) { + fail("gnutls_x509_crt_set_dn: %s, %s\n", gnutls_strerror(ret), err); + } + + + ret = gnutls_x509_crt_set_subject_alt_name(crt, GNUTLS_SAN_DNSNAME, + "foo", 3, 1); + if (ret != 0) + fail("gnutls_x509_crt_set_subject_alt_name\n"); + + ret = gnutls_x509_crt_set_subject_alt_name(crt, GNUTLS_SAN_RFC822NAME, + "foo@bar.org", strlen("foo@bar.org"), 1); + if (ret != 0) + fail("gnutls_x509_crt_set_subject_alt_name\n"); + + ret = gnutls_x509_crt_set_subject_alt_name(crt, GNUTLS_SAN_IPADDRESS, + "\xc1\x5c\x96\x3", 4, 1); + if (ret != 0) + fail("gnutls_x509_crt_set_subject_alt_name\n"); + + ret = gnutls_x509_crt_set_subject_alt_name(crt, GNUTLS_SAN_IPADDRESS, + "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01", 16, 1); + if (ret != 0) + fail("gnutls_x509_crt_set_subject_alt_name\n"); + + ret = gnutls_x509_crt_set_subject_alt_name(crt, GNUTLS_SAN_DNSNAME, + "apa", 3, 0); + if (ret != 0) + fail("gnutls_x509_crt_set_subject_alt_name\n"); + + s = 0; + ret = gnutls_x509_crt_get_key_purpose_oid(crt, 0, NULL, &s, NULL); + if (ret != GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE) + fail("gnutls_x509_crt_get_key_purpose_oid %d\n", ret); + + s = 0; + ret = + gnutls_x509_crt_set_key_purpose_oid(crt, + GNUTLS_KP_TLS_WWW_SERVER, + 0); + if (ret != 0) + fail("gnutls_x509_crt_set_key_purpose_oid %d\n", ret); + + s = 0; + ret = gnutls_x509_crt_get_key_purpose_oid(crt, 0, NULL, &s, NULL); + if (ret != GNUTLS_E_SHORT_MEMORY_BUFFER) + fail("gnutls_x509_crt_get_key_purpose_oid %d\n", ret); + + s = 0; + ret = + gnutls_x509_crt_set_key_purpose_oid(crt, + GNUTLS_KP_TLS_WWW_CLIENT, + 1); + if (ret != 0) + fail("gnutls_x509_crt_set_key_purpose_oid2 %d\n", ret); + + ret = gnutls_x509_crt_set_issuer_dn(crt, "cn = my CA, o = big\\, and one", &err); + if (ret < 0) { + fail("gnutls_x509_crt_set_issuer_dn: %s, %s\n", gnutls_strerror(ret), err); + } + + ret = gnutls_x509_crt_sign2(crt, crt, pkey, GNUTLS_DIG_SHA256, 0); + if (ret < 0) + fail("gnutls_x509_crt_sign2: %s\n", gnutls_strerror(ret)); + + + + ret = gnutls_x509_crt_print(crt, GNUTLS_CRT_PRINT_FULL, &out); + if (ret != 0) + fail("gnutls_x509_crt_print\n"); + if (debug) + printf("crt: %.*s\n", out.size, out.data); + gnutls_free(out.data); + + + s = 0; + ret = gnutls_x509_crt_get_extension_info(crt, 0, NULL, &s, NULL); + if (ret != GNUTLS_E_SHORT_MEMORY_BUFFER) + fail("gnutls_x509_crt_get_extension_info2: %s\n", strerror(ret)); + + s = 0; + ret = gnutls_x509_crt_get_extension_data(crt, 0, NULL, &s); + if (ret != 0) + fail("gnutls_x509_crt_get_extension_data: %s\n", strerror(ret)); + + ret = gnutls_x509_crt_get_raw_issuer_dn(crt, &out); + if (ret < 0 || out.size == 0) + fail("gnutls_x509_crt_get_raw_issuer_dn: %s\n", gnutls_strerror(ret)); + + if (out.size != 45 || + memcmp(out.data, "\x30\x2b\x31\x0e\x30\x0c\x06\x03\x55\x04\x03\x13\x05\x6e\x69\x6b\x6f\x73\x31\x19\x30\x17\x06\x03\x55\x04\x0a\x13\x10\x6e\x6f\x6e\x65\x20\x74\x6f\x2c\x20\x6d\x65\x6e\x74\x69\x6f\x6e", 45) != 0) { + hexprint(out.data, out.size); + fail("issuer DN comparison failed\n"); + } + gnutls_free(out.data); + + ret = gnutls_x509_crt_get_raw_dn(crt, &out); + if (ret < 0 || out.size == 0) + fail("gnutls_x509_crt_get_raw_dn: %s\n", gnutls_strerror(ret)); + + if (out.size != 45 || + memcmp(out.data, "\x30\x2b\x31\x0e\x30\x0c\x06\x03\x55\x04\x03\x13\x05\x6e\x69\x6b\x6f\x73\x31\x19\x30\x17\x06\x03\x55\x04\x0a\x13\x10\x6e\x6f\x6e\x65\x20\x74\x6f\x2c\x20\x6d\x65\x6e\x74\x69\x6f\x6e", 45) != 0) { + fail("DN comparison failed\n"); + } + gnutls_free(out.data); + + ret = gnutls_x509_crt_equals(crt, crt); + if (ret == 0) { + fail("equality test failed\n"); + } + + ret = gnutls_x509_crt_equals(crt, crt2); + if (ret != 0) { + fail("equality test failed\n"); + } + + gnutls_x509_crt_deinit(crt); + gnutls_x509_crt_deinit(crt2); + gnutls_x509_privkey_deinit(pkey); + + gnutls_global_deinit(); +} |