| 
									
										
										
										
											2016-05-18 21:16:36 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright 2008-2016 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-12-06 21:08:15 +08:00
										 |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 21:16:36 +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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-12 00:52:45 +08:00
										 |  |  | /* Simple S/MIME verification example */ | 
					
						
							|  |  |  | #include <openssl/pem.h>
 | 
					
						
							|  |  |  | #include <openssl/cms.h>
 | 
					
						
							|  |  |  | #include <openssl/err.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int main(int argc, char **argv) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     BIO *in = NULL, *out = NULL, *tbio = NULL, *cont = NULL; | 
					
						
							|  |  |  |     X509_STORE *st = NULL; | 
					
						
							|  |  |  |     X509 *cacert = NULL; | 
					
						
							|  |  |  |     CMS_ContentInfo *cms = NULL; | 
					
						
							| 
									
										
										
										
											2008-04-12 00:52:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     int ret = 1; | 
					
						
							| 
									
										
										
										
											2008-04-12 00:52:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     OpenSSL_add_all_algorithms(); | 
					
						
							|  |  |  |     ERR_load_crypto_strings(); | 
					
						
							| 
									
										
										
										
											2008-04-12 00:52:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     /* Set up trusted CA certificate store */ | 
					
						
							| 
									
										
										
										
											2008-04-12 00:52:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     st = X509_STORE_new(); | 
					
						
							| 
									
										
										
										
											2021-12-15 16:24:21 +08:00
										 |  |  |     if (st == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2008-04-12 00:52:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     /* Read in CA certificate */ | 
					
						
							|  |  |  |     tbio = BIO_new_file("cacert.pem", "r"); | 
					
						
							| 
									
										
										
										
											2008-04-12 00:52:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-15 16:24:21 +08:00
										 |  |  |     if (tbio == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2008-04-12 00:52:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     cacert = PEM_read_bio_X509(tbio, NULL, 0, NULL); | 
					
						
							| 
									
										
										
										
											2008-04-12 00:52:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-15 16:24:21 +08:00
										 |  |  |     if (cacert == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2008-04-12 00:52:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (!X509_STORE_add_cert(st, cacert)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2008-04-12 00:52:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     /* Open message being verified */ | 
					
						
							| 
									
										
										
										
											2008-04-12 00:52:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     in = BIO_new_file("smout.txt", "r"); | 
					
						
							| 
									
										
										
										
											2008-04-12 00:52:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-15 16:24:21 +08:00
										 |  |  |     if (in == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2008-04-12 00:52:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     /* parse message */ | 
					
						
							|  |  |  |     cms = SMIME_read_CMS(in, &cont); | 
					
						
							| 
									
										
										
										
											2008-04-12 00:52:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-15 16:24:21 +08:00
										 |  |  |     if (cms == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2008-04-12 00:52:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     /* File to output verified content to */ | 
					
						
							|  |  |  |     out = BIO_new_file("smver.txt", "w"); | 
					
						
							| 
									
										
										
										
											2021-12-15 16:24:21 +08:00
										 |  |  |     if (out == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2008-04-12 00:52:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (!CMS_verify(cms, NULL, st, cont, out, 0)) { | 
					
						
							|  |  |  |         fprintf(stderr, "Verification Failure\n"); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-04-12 00:52:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     fprintf(stderr, "Verification Successful\n"); | 
					
						
							| 
									
										
										
										
											2008-04-12 00:52:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     ret = 0; | 
					
						
							| 
									
										
										
										
											2008-04-12 00:52:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |  err: | 
					
						
							| 
									
										
										
										
											2008-04-12 00:52:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (ret) { | 
					
						
							|  |  |  |         fprintf(stderr, "Error Verifying Data\n"); | 
					
						
							|  |  |  |         ERR_print_errors_fp(stderr); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-04-12 00:52:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-15 16:24:21 +08:00
										 |  |  |     X509_STORE_free(st); | 
					
						
							| 
									
										
										
										
											2015-05-02 02:37:16 +08:00
										 |  |  |     CMS_ContentInfo_free(cms); | 
					
						
							| 
									
										
										
										
											2015-05-01 05:33:59 +08:00
										 |  |  |     X509_free(cacert); | 
					
						
							| 
									
										
										
										
											2015-03-25 23:31:18 +08:00
										 |  |  |     BIO_free(in); | 
					
						
							|  |  |  |     BIO_free(out); | 
					
						
							|  |  |  |     BIO_free(tbio); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return ret; | 
					
						
							|  |  |  | } |