| 
									
										
										
										
											2017-07-09 02:28:15 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2018-03-20 21:00:17 +08:00
										 |  |  |  * Copyright 2017-2018 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2017-07-09 02:28:15 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-12-06 20:05:25 +08:00
										 |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2017-07-09 02:28:15 +08:00
										 |  |  |  * this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  |  * in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  |  * https://www.openssl.org/source/license.html
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Internal tests for the x509 and x509v3 modules */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <openssl/ssl.h>
 | 
					
						
							|  |  |  | #include "testutil.h"
 | 
					
						
							| 
									
										
										
										
											2017-08-22 20:35:43 +08:00
										 |  |  | #include "internal/nelem.h"
 | 
					
						
							| 
									
										
										
										
											2019-09-28 06:45:40 +08:00
										 |  |  | #include "../ssl/ssl_local.h"
 | 
					
						
							| 
									
										
										
										
											2017-07-09 02:28:15 +08:00
										 |  |  | #include "../ssl/ssl_cert_table.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define test_cert_table(nid, amask, idx) \
 | 
					
						
							|  |  |  |     do_test_cert_table(nid, amask, idx, #idx) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int do_test_cert_table(int nid, uint32_t amask, size_t idx, | 
					
						
							|  |  |  |                               const char *idxname) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const SSL_CERT_LOOKUP *clu = &ssl_cert_info[idx]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (clu->nid == nid && clu->amask == amask) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     TEST_error("Invalid table entry for certificate type %s, index %zu", | 
					
						
							|  |  |  |                idxname, idx); | 
					
						
							|  |  |  |     if (clu->nid != nid) | 
					
						
							|  |  |  |         TEST_note("Expected %s, got %s\n", OBJ_nid2sn(nid), | 
					
						
							|  |  |  |                   OBJ_nid2sn(clu->nid)); | 
					
						
							|  |  |  |     if (clu->amask != amask) | 
					
						
							|  |  |  |         TEST_note("Expected auth mask 0x%x, got 0x%x\n", amask, clu->amask); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Sanity check of ssl_cert_table */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-16 05:39:03 +08:00
										 |  |  | static int test_ssl_cert_table(void) | 
					
						
							| 
									
										
										
										
											2017-07-09 02:28:15 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     TEST_size_t_eq(OSSL_NELEM(ssl_cert_info), SSL_PKEY_NUM); | 
					
						
							|  |  |  |     if (!test_cert_table(EVP_PKEY_RSA, SSL_aRSA, SSL_PKEY_RSA)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (!test_cert_table(EVP_PKEY_DSA, SSL_aDSS, SSL_PKEY_DSA_SIGN)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (!test_cert_table(EVP_PKEY_EC, SSL_aECDSA, SSL_PKEY_ECC)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (!test_cert_table(NID_id_GostR3410_2001, SSL_aGOST01, SSL_PKEY_GOST01)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (!test_cert_table(NID_id_GostR3410_2012_256, SSL_aGOST12, | 
					
						
							|  |  |  |                          SSL_PKEY_GOST12_256)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (!test_cert_table(NID_id_GostR3410_2012_512, SSL_aGOST12, | 
					
						
							|  |  |  |                          SSL_PKEY_GOST12_512)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (!test_cert_table(EVP_PKEY_ED25519, SSL_aECDSA, SSL_PKEY_ED25519)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2018-02-27 21:02:00 +08:00
										 |  |  |     if (!test_cert_table(EVP_PKEY_ED448, SSL_aECDSA, SSL_PKEY_ED448)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2017-07-09 02:28:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-09 23:09:50 +08:00
										 |  |  | int setup_tests(void) | 
					
						
							| 
									
										
										
										
											2017-07-09 02:28:15 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     ADD_TEST(test_ssl_cert_table); | 
					
						
							| 
									
										
										
										
											2017-07-18 09:48:27 +08:00
										 |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2017-07-09 02:28:15 +08:00
										 |  |  | } |