]> git.ipfire.org Git - thirdparty/openssl.git/blame - test/x509_check_cert_pkey_test.c
Configure: use $list_separator_re only for defines and includes
[thirdparty/openssl.git] / test / x509_check_cert_pkey_test.c
CommitLineData
6d2523e0
PY
1/*
2 * Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8 */
9
10#include <stdio.h>
11#include <string.h>
12
13#include <openssl/pem.h>
14#include <openssl/x509.h>
15#include "testutil.h"
16
17/*
18 * c: path of a cert in PEM format
19 * k: path of a key in PEM format
20 * t: API type, "cert" for X509_ and "req" for X509_REQ_ APIs.
21 * e: expected, "ok" for success, "failed" for what should fail.
22 */
ad887416
P
23static const char *c;
24static const char *k;
25static const char *t;
26static const char *e;
27
28static int test_x509_check_cert_pkey(void)
6d2523e0
PY
29{
30 BIO *bio = NULL;
31 X509 *x509 = NULL;
32 X509_REQ *x509_req = NULL;
33 EVP_PKEY *pkey = NULL;
e514ff0f 34 int ret = 0, type = 0, expected = 0, result = 0;
6d2523e0
PY
35
36 /*
37 * we check them first thus if fails we don't need to do
38 * those PEM parsing operations.
39 */
40 if (strcmp(t, "cert") == 0) {
41 type = 1;
42 } else if (strcmp(t, "req") == 0) {
43 type = 2;
44 } else {
45 TEST_error("invalid 'type'");
46 goto failed;
47 }
48
49 if (strcmp(e, "ok") == 0) {
50 expected = 1;
51 } else if (strcmp(e, "failed") == 0) {
1efd98f9 52 expected = 0;
6d2523e0
PY
53 } else {
54 TEST_error("invalid 'expected'");
55 goto failed;
56 }
57
58 /* process private key */
1efd98f9 59 if (!TEST_ptr(bio = BIO_new_file(k, "r")))
6d2523e0 60 goto failed;
6d2523e0 61
1efd98f9 62 if (!TEST_ptr(pkey = PEM_read_bio_PrivateKey(bio, NULL, NULL, NULL)))
6d2523e0 63 goto failed;
6d2523e0
PY
64
65 BIO_free(bio);
66
67 /* process cert or cert request, use the same local var */
1efd98f9 68 if (!TEST_ptr(bio = BIO_new_file(c, "r")))
6d2523e0 69 goto failed;
6d2523e0
PY
70
71 switch (type) {
1efd98f9
PY
72 case 1:
73 x509 = PEM_read_bio_X509(bio, NULL, NULL, NULL);
74 if (x509 == NULL) {
75 TEST_error("read PEM x509 failed");
6d2523e0
PY
76 goto failed;
77 }
1efd98f9
PY
78
79 result = X509_check_private_key(x509, pkey);
80 break;
81 case 2:
82 x509_req = PEM_read_bio_X509_REQ(bio, NULL, NULL, NULL);
83 if (x509_req == NULL) {
84 TEST_error("read PEM x509 req failed");
6d2523e0
PY
85 goto failed;
86 }
1efd98f9
PY
87
88 result = X509_REQ_check_private_key(x509_req, pkey);
89 break;
90 default:
91 /* should never be here */
92 break;
6d2523e0
PY
93 }
94
1efd98f9
PY
95 if (!TEST_int_eq(result, expected)) {
96 TEST_error("check private key: expected: %d, got: %d", expected, result);
97 goto failed;
98 }
6d2523e0 99
6d2523e0 100 ret = 1;
1efd98f9
PY
101failed:
102 BIO_free(bio);
103 X509_free(x509);
104 X509_REQ_free(x509_req);
105 EVP_PKEY_free(pkey);
106 return ret;
6d2523e0
PY
107}
108
ad887416 109int setup_tests(void)
6d2523e0 110{
ad887416
P
111 if (!TEST_ptr(c = test_get_argument(0))
112 || !TEST_ptr(k = test_get_argument(1))
113 || !TEST_ptr(t = test_get_argument(2))
114 || !TEST_ptr(e = test_get_argument(3))) {
115 TEST_note("usage: x509_check_cert_pkey cert.pem|cert.req"
6d2523e0 116 " key.pem cert|req <expected>");
ad887416 117 return 0;
6d2523e0
PY
118 }
119
ad887416
P
120 ADD_TEST(test_x509_check_cert_pkey);
121 return 1;
6d2523e0 122}