1# Signature Recovery Using an RSA Key Pair (PKCS1 Mode) (C/C++)
2
3
4For details about the algorithm specifications, see [RSA](crypto-sign-sig-verify-overview.md#rsa).
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 **'RSA1024|PKCS1|SHA256|Recover'** to create a **Verify** instance. The key parameters must be the same as that used to create the **Sign** instance.
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_Recover](../../reference/apis-crypto-architecture-kit/_crypto_signature_api.md#oh_cryptoverify_recover) to restore the data.
20
21**Example**
22
23```c++
24#include "CryptoArchitectureKit/crypto_common.h"
25#include "CryptoArchitectureKit/crypto_signature.h"
26#include "CryptoArchitectureKit/crypto_asym_key.h"
27
28static OH_Crypto_ErrCode doTestRsaSignatureRecover()
29{
30   OH_CryptoAsymKeyGenerator *keyCtx = nullptr;
31   OH_CryptoKeyPair *keyPair = nullptr;
32   OH_CryptoVerify *verify = nullptr;
33
34   uint8_t plainText[] = {
35      0xc4, 0xa5, 0xe5, 0x45, 0xee, 0x71, 0x5e, 0x3b, 0x24, 0x1d, 0x7e, 0x62, 0xd6, 0x6b, 0xab, 0x98,
36      0x88, 0x0f, 0xaf, 0x1e, 0x96, 0xa0, 0x6c, 0xa5, 0x0d, 0x29, 0xfd, 0xcc, 0xef, 0xf6, 0x2b, 0x92
37   };
38   Crypto_DataBlob msgBlob = {
39      .data = reinterpret_cast<uint8_t *>(plainText),
40      .len = sizeof(plainText)
41   };
42
43   uint8_t pubKeyText[] = {
44      0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x42, 0x45, 0x47, 0x49, 0x4e, 0x20, 0x52, 0x53, 0x41, 0x20, 0x50,
45      0x55, 0x42, 0x4c, 0x49, 0x43, 0x20, 0x4b, 0x45, 0x59, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x0a, 0x4d,
46      0x49, 0x47, 0x4a, 0x41, 0x6f, 0x47, 0x42, 0x41, 0x4b, 0x72, 0x55, 0x74, 0x74, 0x64, 0x76, 0x73,
47      0x2b, 0x62, 0x6e, 0x4d, 0x2f, 0x6f, 0x4e, 0x75, 0x39, 0x45, 0x42, 0x78, 0x35, 0x64, 0x49, 0x6d,
48      0x61, 0x70, 0x52, 0x67, 0x4d, 0x6a, 0x4b, 0x41, 0x38, 0x51, 0x48, 0x4b, 0x61, 0x75, 0x2f, 0x6c,
49      0x58, 0x50, 0x50, 0x68, 0x76, 0x38, 0x30, 0x69, 0x59, 0x4c, 0x46, 0x2b, 0x79, 0x35, 0x35, 0x0a,
50      0x6d, 0x42, 0x2f, 0x38, 0x2b, 0x4b, 0x68, 0x34, 0x34, 0x43, 0x2b, 0x5a, 0x76, 0x6f, 0x78, 0x5a,
51      0x66, 0x38, 0x78, 0x34, 0x6e, 0x78, 0x6f, 0x71, 0x76, 0x4f, 0x6f, 0x73, 0x32, 0x44, 0x55, 0x69,
52      0x51, 0x44, 0x4f, 0x4a, 0x35, 0x63, 0x57, 0x68, 0x5a, 0x62, 0x4d, 0x71, 0x4d, 0x42, 0x71, 0x62,
53      0x39, 0x30, 0x4e, 0x39, 0x63, 0x2f, 0x44, 0x51, 0x67, 0x39, 0x34, 0x63, 0x52, 0x7a, 0x35, 0x66,
54      0x0a, 0x68, 0x55, 0x66, 0x6d, 0x66, 0x6d, 0x54, 0x41, 0x46, 0x6a, 0x5a, 0x53, 0x33, 0x78, 0x6c,
55      0x78, 0x77, 0x6e, 0x50, 0x77, 0x66, 0x66, 0x39, 0x71, 0x44, 0x79, 0x4c, 0x63, 0x5a, 0x55, 0x6b,
56      0x6e, 0x64, 0x43, 0x30, 0x50, 0x77, 0x72, 0x6c, 0x38, 0x72, 0x70, 0x4b, 0x7a, 0x50, 0x47, 0x63,
57      0x71, 0x4e, 0x67, 0x33, 0x5a, 0x41, 0x67, 0x4d, 0x42, 0x41, 0x41, 0x45, 0x3d, 0x0a, 0x2d, 0x2d,
58      0x2d, 0x2d, 0x2d, 0x45, 0x4e, 0x44, 0x20, 0x52, 0x53, 0x41, 0x20, 0x50, 0x55, 0x42, 0x4c, 0x49,
59      0x43, 0x20, 0x4b, 0x45, 0x59, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x0a,
60   };
61
62   Crypto_DataBlob keyBlob = {
63      .data = reinterpret_cast<uint8_t *>(pubKeyText),
64      .len = sizeof(pubKeyText)
65   };
66
67   uint8_t signText[] = {
68      0x1f, 0xe3, 0xcf, 0x8d, 0x94, 0xb4, 0xa0, 0x9e, 0xf1, 0x0c, 0x38, 0x59, 0xcb, 0x5b, 0x89, 0xc9,
69      0x66, 0x8b, 0xfd, 0x8d, 0x1e, 0x37, 0xfa, 0x5e, 0x1b, 0xb1, 0x51, 0x07, 0xf1, 0xb0, 0x7d, 0x18,
70      0x2d, 0x82, 0x2a, 0x04, 0xa4, 0x4e, 0x94, 0x7e, 0x76, 0xb8, 0xa4, 0x78, 0x90, 0x2f, 0x43, 0x1d,
71      0x95, 0x80, 0xd7, 0xb3, 0x46, 0x4d, 0x58, 0x4b, 0xcd, 0x1f, 0x1d, 0xb3, 0x1f, 0x6b, 0x15, 0xd8,
72      0x33, 0x51, 0x1d, 0x36, 0x12, 0x39, 0x92, 0xb4, 0x4d, 0xe2, 0x89, 0x26, 0x01, 0xe9, 0x1f, 0xc0,
73      0x9c, 0x7c, 0xd8, 0xeb, 0x47, 0xff, 0xfb, 0x5d, 0x98, 0x9a, 0x02, 0x6a, 0x16, 0x37, 0xb1, 0xf5,
74      0x08, 0x4d, 0xd7, 0xa0, 0xf2, 0x9e, 0xbe, 0x4b, 0x54, 0x77, 0x94, 0x95, 0x4b, 0x97, 0x10, 0x22,
75      0x49, 0xa5, 0x2e, 0x05, 0x86, 0xfd, 0x6f, 0x9a, 0x40, 0xe6, 0x43, 0xab, 0xc5, 0xbc, 0xac, 0x21,
76   };
77
78   Crypto_DataBlob signBlob = {
79      .data = reinterpret_cast<uint8_t *>(signText),
80      .len = sizeof(signText)
81   };
82
83   // Key pair
84   OH_Crypto_ErrCode ret = CRYPTO_SUCCESS;
85   ret = OH_CryptoAsymKeyGenerator_Create((const char *)"RSA2048", &keyCtx);
86   if (ret != CRYPTO_SUCCESS) {
87      return ret;
88   }
89   ret = OH_CryptoAsymKeyGenerator_Convert(keyCtx, CRYPTO_PEM, &keyBlob, nullptr, &keyPair);
90   if (ret != CRYPTO_SUCCESS) {
91      OH_CryptoAsymKeyGenerator_Destroy(keyCtx);
92      return ret;
93   }
94   OH_CryptoPubKey *pubKey = OH_CryptoKeyPair_GetPubKey(keyPair);
95   // verify
96   ret = OH_CryptoVerify_Create((const char *)"RSA1024|PKCS1|SHA256|Recover", &verify);
97   if (ret != CRYPTO_SUCCESS) {
98      OH_CryptoVerify_Destroy(verify);
99      OH_CryptoAsymKeyGenerator_Destroy(keyCtx);
100      return ret;
101   }
102   ret = OH_CryptoVerify_Init(verify, pubKey);
103   if (ret != CRYPTO_SUCCESS) {
104      OH_CryptoVerify_Destroy(verify);
105      OH_CryptoAsymKeyGenerator_Destroy(keyCtx);
106      return ret;
107   }
108   Crypto_DataBlob rawSignData = {.data = nullptr, .len = 0};
109   ret = OH_CryptoVerify_Recover(verify, (Crypto_DataBlob *)&signBlob, &rawSignData);
110   if (ret != CRYPTO_SUCCESS) {
111      OH_CryptoVerify_Destroy(verify);
112      OH_CryptoAsymKeyGenerator_Destroy(keyCtx);
113      return ret;
114   }
115
116   OH_CryptoVerify_Destroy(verify);
117   OH_CryptoAsymKeyGenerator_Destroy(keyCtx);
118   OH_CryptoKeyPair_Destroy(keyPair);
119   return ret;
120}
121```
122