1# Signature Verification with an SM2 Key Pair (C/C++)
2
3
4For details about the algorithm specifications, see [SM2](crypto-sign-sig-verify-overview.md#sm2).
5
6
7## Adding the Dynamic Library in the CMake Script
8```txt
9   target_link_libraries(entry PUBLIC libohcrypto.so)
10```
11
12## How to Develop
13
14
151. Use [OH_CryptoVerify_Create](../../reference/apis-crypto-architecture-kit/_crypto_signature_api.md#oh_cryptoverify_create) with the string parameter **'SM2_256|SM3'** to create a **Verify** instance. The key type is **SM2_256**, and MD algorithm is **SM3**.
16
172. Use [OH_CryptoVerify_Init](../../reference/apis-crypto-architecture-kit/_crypto_signature_api.md#oh_cryptoverify_init) to initialize the **Verify** instance by using the public key (**OH_CryptoPubKey**).
18
193. Use [OH_CryptoVerify_Update](../../reference/apis-crypto-architecture-kit/_crypto_signature_api.md#oh_cryptoverify_update) to pass in the data to be verified.
20
21   Currently, the amount of data to be passed in by a single **OH_CryptoVerify_Update** is not limited. You can determine how to pass in data based on the data volume. If a small amount of data is to be verified, you can call **OH_CryptoVerify_Final** immediately after **OH_CryptoVerify_Init()**.
22
234. Use [OH_CryptoVerify_Final](../../reference/apis-crypto-architecture-kit/_crypto_signature_api.md#oh_cryptoverify_final) to verify the signature.
24
25**Example**
26
27```c++
28#include "CryptoArchitectureKit/crypto_common.h"
29#include "CryptoArchitectureKit/crypto_signature.h"
30#include "CryptoArchitectureKit/crypto_asym_key.h"
31
32static bool doTestSm2Signature()
33{
34   OH_CryptoAsymKeyGenerator *keyCtx = nullptr;
35   OH_CryptoKeyPair *keyPair = nullptr;
36   OH_CryptoVerify *verify = nullptr;
37
38   uint8_t plainText[] = {
39      0x96, 0x46, 0x2e, 0xde, 0x3f, 0x47, 0xbf, 0xd6, 0x87, 0x48, 0x36, 0x1d, 0x75, 0x35, 0xbd, 0xbc,
40      0x6b, 0x06, 0xe8, 0xb3, 0x68, 0x91, 0x53, 0xce, 0x76, 0x5d, 0x24, 0xda, 0xdc, 0xc4, 0x9f, 0x94,
41   };
42   Crypto_DataBlob msgBlob = {
43      .data = reinterpret_cast<uint8_t *>(plainText),
44      .len = sizeof(plainText)
45   };
46
47   uint8_t pubKeyText[] = {
48      0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a,
49      0x81, 0x1c, 0xcf, 0x55, 0x01, 0x82, 0x2d, 0x03, 0x42, 0x00, 0x04, 0x80, 0x5b, 0x78, 0x04, 0xd7,
50      0xcf, 0xc3, 0x99, 0x63, 0xae, 0x88, 0xcd, 0xfc, 0xd6, 0x18, 0xf4, 0x08, 0xe8, 0xe3, 0x68, 0x47,
51      0x4f, 0x44, 0x0e, 0xb2, 0xba, 0x3a, 0xb3, 0x10, 0xf1, 0xc9, 0xd0, 0x84, 0xe2, 0xa4, 0x47, 0xbe,
52      0x72, 0xae, 0xf8, 0x6a, 0xeb, 0x6e, 0x10, 0xab, 0x52, 0x6b, 0x6a, 0x58, 0xc6, 0xb5, 0x78, 0xaa,
53      0x70, 0xe5, 0x58, 0x20, 0x4e, 0x34, 0x42, 0x77, 0x08, 0x27, 0x11,
54   };
55
56   Crypto_DataBlob keyBlob = {
57      .data = reinterpret_cast<uint8_t *>(pubKeyText),
58      .len = sizeof(pubKeyText)
59   };
60
61   uint8_t signText[] = {
62      0x30, 0x45, 0x02, 0x21, 0x00, 0xf4, 0xe7, 0x9d, 0x35, 0x33, 0xa6, 0x86, 0x2e, 0x2a, 0x97, 0x72,
63      0xc9, 0x46, 0x79, 0x65, 0xca, 0x4a, 0x71, 0x34, 0xca, 0xf7, 0x58, 0xb3, 0x26, 0xa5, 0xdb, 0xfa,
64      0x8b, 0xbe, 0xbf, 0x5f, 0x90, 0x02, 0x20, 0x53, 0xb4, 0x23, 0xb1, 0xe2, 0x8f, 0x2f, 0xe9, 0xc8,
65      0x22, 0xef, 0xab, 0x9b, 0x13, 0x08, 0x75, 0x8e, 0xb1, 0x9c, 0x59, 0xe5, 0xd6, 0x64, 0x35, 0xf5,
66      0xd1, 0xde, 0xfa, 0xfe, 0x80, 0x37, 0x1a,
67   };
68
69   Crypto_DataBlob signBlob = {
70      .data = reinterpret_cast<uint8_t *>(signText),
71      .len = sizeof(signText)
72   };
73
74   // keypair
75   OH_Crypto_ErrCode ret = CRYPTO_SUCCESS;
76   ret = OH_CryptoAsymKeyGenerator_Create((const char *)"SM2_256", &keyCtx);
77   if (ret != CRYPTO_SUCCESS) {
78      return false;
79   }
80   ret = OH_CryptoAsymKeyGenerator_Convert(keyCtx, CRYPTO_DER, &keyBlob, nullptr, &keyPair);
81   if (ret != CRYPTO_SUCCESS) {
82      OH_CryptoAsymKeyGenerator_Destroy(keyCtx);
83      return false;
84   }
85   OH_CryptoPubKey *pubKey = OH_CryptoKeyPair_GetPubKey(keyPair);
86   // verify
87   ret = OH_CryptoVerify_Create((const char *)"SM2_256|SM3", &verify);
88   if (ret != CRYPTO_SUCCESS) {
89      OH_CryptoVerify_Destroy(verify);
90      OH_CryptoAsymKeyGenerator_Destroy(keyCtx);
91      return false;
92   }
93   ret = OH_CryptoVerify_Init(verify, pubKey);
94   if (ret != CRYPTO_SUCCESS) {
95      OH_CryptoVerify_Destroy(verify);
96      OH_CryptoAsymKeyGenerator_Destroy(keyCtx);
97      return false;
98   }
99   bool res = OH_CryptoVerify_Final(verify, &msgBlob, &signBlob);
100   if (res != true) {
101      OH_CryptoVerify_Destroy(verify);
102      OH_CryptoAsymKeyGenerator_Destroy(keyCtx);
103      return false;
104   }
105
106   OH_CryptoVerify_Destroy(verify);
107   OH_CryptoAsymKeyGenerator_Destroy(keyCtx);
108   OH_CryptoKeyPair_Destroy(keyPair);
109   return res;
110}
111```
112