| 
									
										
										
										
											2018-09-05 20:20:33 +08:00
										 |  |  | =pod | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 NAME | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-18 19:10:21 +08:00
										 |  |  | EVP_PKEY-SM2, EVP_KEYMGMT-SM2, SM2 | 
					
						
							|  |  |  | - EVP_PKEY keytype support for the Chinese SM2 signature and encryption algorithms | 
					
						
							| 
									
										
										
										
											2018-09-05 20:20:33 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =head1 DESCRIPTION | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-06 10:36:11 +08:00
										 |  |  | The B<SM2> algorithm was first defined by the Chinese national standard GM/T | 
					
						
							|  |  |  | 0003-2012 and was later standardized by ISO as ISO/IEC 14888. B<SM2> is actually | 
					
						
							|  |  |  | an elliptic curve based algorithm. The current implementation in OpenSSL supports | 
					
						
							|  |  |  | both signature and encryption schemes via the EVP interface. | 
					
						
							| 
									
										
										
										
											2018-09-05 20:20:33 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | When doing the B<SM2> signature algorithm, it requires a distinguishing identifier | 
					
						
							|  |  |  | to form the message prefix which is hashed before the real message is hashed. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-03 08:54:13 +08:00
										 |  |  | =head2 Common SM2 parameters | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SM2 uses the parameters defined in L<EVP_PKEY-EC(7)/Common EC parameters>. | 
					
						
							|  |  |  | The following parameters are different: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =over 4 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =item "cofactor" (B<OSSL_PKEY_PARAM_EC_COFACTOR>) <unsigned integer> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | This parameter is ignored for B<SM2>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =item (B<OSSL_PKEY_PARAM_DEFAULT_DIGEST>) <UTF8 string> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Getter that returns the default digest name. | 
					
						
							|  |  |  | (Currently returns "SM3" as of OpenSSL 3.0). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =back | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-05 20:20:33 +08:00
										 |  |  | =head1 NOTES | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-06 10:36:11 +08:00
										 |  |  | B<SM2> signatures can be generated by using the 'DigestSign' series of APIs, for | 
					
						
							|  |  |  | instance, EVP_DigestSignInit(), EVP_DigestSignUpdate() and EVP_DigestSignFinal(). | 
					
						
							|  |  |  | Ditto for the verification process by calling the 'DigestVerify' series of APIs. | 
					
						
							| 
									
										
										
										
											2024-03-19 16:52:57 +08:00
										 |  |  | Note that the SM2 algorithm requires the presence of the public key for signatures, | 
					
						
							|  |  |  | as such the B<OSSL_PKEY_PARAM_PUB_KEY> option must be set on any key used in signature | 
					
						
							|  |  |  | generation. | 
					
						
							| 
									
										
										
										
											2018-09-05 20:20:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-25 00:51:39 +08:00
										 |  |  | Before computing an B<SM2> signature, an B<EVP_PKEY_CTX> needs to be created, | 
					
						
							|  |  |  | and an B<SM2> ID must be set for it, like this: | 
					
						
							| 
									
										
										
										
											2018-09-05 20:20:33 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  EVP_PKEY_CTX_set1_id(pctx, id, id_len); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-25 00:51:39 +08:00
										 |  |  | Before calling the EVP_DigestSignInit() or EVP_DigestVerifyInit() functions, | 
					
						
							|  |  |  | that B<EVP_PKEY_CTX> should be assigned to the B<EVP_MD_CTX>, like this: | 
					
						
							| 
									
										
										
										
											2018-09-05 20:20:33 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  EVP_MD_CTX_set_pkey_ctx(mctx, pctx); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-25 00:51:39 +08:00
										 |  |  | There is normally no need to pass a B<pctx> parameter to EVP_DigestSignInit() | 
					
						
							| 
									
										
										
										
											2018-09-06 10:36:11 +08:00
										 |  |  | or EVP_DigestVerifyInit() in such a scenario. | 
					
						
							| 
									
										
										
										
											2018-09-05 20:20:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-18 19:10:21 +08:00
										 |  |  | SM2 can be tested with the L<openssl-speed(1)> application since version 3.0. | 
					
						
							| 
									
										
										
										
											2019-11-02 04:26:05 +08:00
										 |  |  | Currently, the only valid algorithm name is B<sm2>. | 
					
						
							| 
									
										
										
										
											2019-09-29 22:25:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-23 15:40:56 +08:00
										 |  |  | Since version 3.0, SM2 keys can be generated and loaded only when the domain | 
					
						
							|  |  |  | parameters specify the SM2 elliptic curve. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-16 02:26:08 +08:00
										 |  |  | =head1 EXAMPLES | 
					
						
							| 
									
										
										
										
											2018-09-05 20:20:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-06 10:36:11 +08:00
										 |  |  | This example demonstrates the calling sequence for using an B<EVP_PKEY> to verify | 
					
						
							|  |  |  | a message with the SM2 signature algorithm and the SM3 hash algorithm: | 
					
						
							| 
									
										
										
										
											2018-09-05 20:20:33 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  #include <openssl/evp.h> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-06 10:36:11 +08:00
										 |  |  |  /* obtain an EVP_PKEY using whatever methods... */ | 
					
						
							| 
									
										
										
										
											2018-09-05 20:20:33 +08:00
										 |  |  |  mctx = EVP_MD_CTX_new(); | 
					
						
							|  |  |  |  pctx = EVP_PKEY_CTX_new(pkey, NULL); | 
					
						
							|  |  |  |  EVP_PKEY_CTX_set1_id(pctx, id, id_len); | 
					
						
							| 
									
										
										
										
											2020-01-25 00:51:39 +08:00
										 |  |  |  EVP_MD_CTX_set_pkey_ctx(mctx, pctx); | 
					
						
							| 
									
										
										
										
											2018-09-05 20:20:33 +08:00
										 |  |  |  EVP_DigestVerifyInit(mctx, NULL, EVP_sm3(), NULL, pkey); | 
					
						
							|  |  |  |  EVP_DigestVerifyUpdate(mctx, msg, msg_len); | 
					
						
							|  |  |  |  EVP_DigestVerifyFinal(mctx, sig, sig_len) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 SEE ALSO | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | L<EVP_PKEY_CTX_new(3)>, | 
					
						
							|  |  |  | L<EVP_DigestSignInit(3)>, | 
					
						
							|  |  |  | L<EVP_DigestVerifyInit(3)>, | 
					
						
							|  |  |  | L<EVP_PKEY_CTX_set1_id(3)>, | 
					
						
							|  |  |  | L<EVP_MD_CTX_set_pkey_ctx(3)> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 COPYRIGHT | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-05 15:35:49 +08:00
										 |  |  | Copyright 2018-2024 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2018-09-05 20:20:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-06 21:05:22 +08:00
										 |  |  | Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2018-09-05 20:20:33 +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 | 
					
						
							|  |  |  | L<https://www.openssl.org/source/license.html>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =cut |