| 
									
										
										
										
											2016-05-18 21:16:36 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2023-09-07 16:59:15 +08:00
										 |  |  |  * Copyright 2007-2023 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2016-05-18 21:16:36 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-11 03:02:00 +08:00
										 |  |  | /* S/MIME signing example: 2 signers */ | 
					
						
							| 
									
										
										
										
											2007-04-14 04:40:47 +08:00
										 |  |  | #include <openssl/pem.h>
 | 
					
						
							|  |  |  | #include <openssl/pkcs7.h>
 | 
					
						
							|  |  |  | #include <openssl/err.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int main(int argc, char **argv) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     BIO *in = NULL, *out = NULL, *tbio = NULL; | 
					
						
							|  |  |  |     X509 *scert = NULL, *scert2 = NULL; | 
					
						
							|  |  |  |     EVP_PKEY *skey = NULL, *skey2 = NULL; | 
					
						
							|  |  |  |     PKCS7 *p7 = NULL; | 
					
						
							| 
									
										
										
										
											2023-03-20 12:48:33 +08:00
										 |  |  |     int ret = EXIT_FAILURE; | 
					
						
							| 
									
										
										
										
											2007-04-14 04:40:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     OpenSSL_add_all_algorithms(); | 
					
						
							|  |  |  |     ERR_load_crypto_strings(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     tbio = BIO_new_file("signer.pem", "r"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!tbio) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     scert = PEM_read_bio_X509(tbio, NULL, 0, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-11 03:02:00 +08:00
										 |  |  |     if (BIO_reset(tbio) < 0) | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2007-04-14 04:40:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     skey = PEM_read_bio_PrivateKey(tbio, NULL, 0, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     BIO_free(tbio); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     tbio = BIO_new_file("signer2.pem", "r"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!tbio) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     scert2 = PEM_read_bio_X509(tbio, NULL, 0, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-11 03:02:00 +08:00
										 |  |  |     if (BIO_reset(tbio) < 0) | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2007-04-14 04:40:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     skey2 = PEM_read_bio_PrivateKey(tbio, NULL, 0, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!scert2 || !skey2) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     in = BIO_new_file("sign.txt", "r"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!in) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     p7 = PKCS7_sign(NULL, NULL, NULL, in, PKCS7_STREAM | PKCS7_PARTIAL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!p7) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Add each signer in turn */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!PKCS7_sign_add_signer(p7, scert, skey, NULL, 0)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!PKCS7_sign_add_signer(p7, scert2, skey2, NULL, 0)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     out = BIO_new_file("smout.txt", "w"); | 
					
						
							|  |  |  |     if (!out) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* NB: content included and finalized by SMIME_write_PKCS7 */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!SMIME_write_PKCS7(out, p7, in, PKCS7_STREAM)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-11 03:02:00 +08:00
										 |  |  |     printf("Success\n"); | 
					
						
							| 
									
										
										
										
											2007-04-14 04:40:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-11 03:02:00 +08:00
										 |  |  |     ret = EXIT_SUCCESS; | 
					
						
							| 
									
										
										
										
											2007-04-14 04:40:47 +08:00
										 |  |  |  err: | 
					
						
							| 
									
										
										
										
											2023-03-20 12:48:33 +08:00
										 |  |  |     if (ret != EXIT_SUCCESS) { | 
					
						
							| 
									
										
										
										
											2007-04-14 04:40:47 +08:00
										 |  |  |         fprintf(stderr, "Error Signing Data\n"); | 
					
						
							|  |  |  |         ERR_print_errors_fp(stderr); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-04-12 04:32:54 +08:00
										 |  |  |     PKCS7_free(p7); | 
					
						
							| 
									
										
										
										
											2015-05-01 05:33:59 +08:00
										 |  |  |     X509_free(scert); | 
					
						
							| 
									
										
										
										
											2015-03-28 22:54:15 +08:00
										 |  |  |     EVP_PKEY_free(skey); | 
					
						
							| 
									
										
										
										
											2015-05-01 05:33:59 +08:00
										 |  |  |     X509_free(scert2); | 
					
						
							| 
									
										
										
										
											2015-03-28 22:54:15 +08:00
										 |  |  |     EVP_PKEY_free(skey2); | 
					
						
							| 
									
										
										
										
											2015-03-25 23:31:18 +08:00
										 |  |  |     BIO_free(in); | 
					
						
							|  |  |  |     BIO_free(out); | 
					
						
							|  |  |  |     BIO_free(tbio); | 
					
						
							| 
									
										
										
										
											2007-04-14 04:40:47 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } |