1 | /*
|
---|
2 | * Copyright 2017-2022 The OpenSSL Project Authors. All Rights Reserved.
|
---|
3 | *
|
---|
4 | * Licensed under the Apache License 2.0 (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 | /* Internal tests for the x509 and x509v3 modules */
|
---|
11 |
|
---|
12 | #include <stdio.h>
|
---|
13 | #include <string.h>
|
---|
14 |
|
---|
15 | #include <openssl/ssl.h>
|
---|
16 | #include "testutil.h"
|
---|
17 | #include "internal/nelem.h"
|
---|
18 | #include "../ssl/ssl_local.h"
|
---|
19 | #include "../ssl/ssl_cert_table.h"
|
---|
20 |
|
---|
21 | #define test_cert_table(nid, amask, idx) \
|
---|
22 | do_test_cert_table(nid, amask, idx, #idx)
|
---|
23 |
|
---|
24 | static int do_test_cert_table(int nid, uint32_t amask, size_t idx,
|
---|
25 | const char *idxname)
|
---|
26 | {
|
---|
27 | const SSL_CERT_LOOKUP *clu = &ssl_cert_info[idx];
|
---|
28 |
|
---|
29 | if (clu->nid == nid && clu->amask == amask)
|
---|
30 | return 1;
|
---|
31 |
|
---|
32 | TEST_error("Invalid table entry for certificate type %s, index %zu",
|
---|
33 | idxname, idx);
|
---|
34 | if (clu->nid != nid)
|
---|
35 | TEST_note("Expected %s, got %s\n", OBJ_nid2sn(nid),
|
---|
36 | OBJ_nid2sn(clu->nid));
|
---|
37 | if (clu->amask != amask)
|
---|
38 | TEST_note("Expected auth mask 0x%x, got 0x%x\n",
|
---|
39 | (unsigned int)amask, (unsigned int)clu->amask);
|
---|
40 | return 0;
|
---|
41 | }
|
---|
42 |
|
---|
43 | /* Sanity check of ssl_cert_table */
|
---|
44 |
|
---|
45 | static int test_ssl_cert_table(void)
|
---|
46 | {
|
---|
47 | return TEST_size_t_eq(OSSL_NELEM(ssl_cert_info), SSL_PKEY_NUM)
|
---|
48 | && test_cert_table(EVP_PKEY_RSA, SSL_aRSA, SSL_PKEY_RSA)
|
---|
49 | && test_cert_table(EVP_PKEY_DSA, SSL_aDSS, SSL_PKEY_DSA_SIGN)
|
---|
50 | && test_cert_table(EVP_PKEY_EC, SSL_aECDSA, SSL_PKEY_ECC)
|
---|
51 | && test_cert_table(NID_id_GostR3410_2001, SSL_aGOST01,
|
---|
52 | SSL_PKEY_GOST01)
|
---|
53 | && test_cert_table(NID_id_GostR3410_2012_256, SSL_aGOST12,
|
---|
54 | SSL_PKEY_GOST12_256)
|
---|
55 | && test_cert_table(NID_id_GostR3410_2012_512, SSL_aGOST12,
|
---|
56 | SSL_PKEY_GOST12_512)
|
---|
57 | && test_cert_table(EVP_PKEY_ED25519, SSL_aECDSA, SSL_PKEY_ED25519)
|
---|
58 | && test_cert_table(EVP_PKEY_ED448, SSL_aECDSA, SSL_PKEY_ED448);
|
---|
59 | }
|
---|
60 |
|
---|
61 | int setup_tests(void)
|
---|
62 | {
|
---|
63 | ADD_TEST(test_ssl_cert_table);
|
---|
64 | return 1;
|
---|
65 | }
|
---|