Lines Matching refs:verify
4 For details about the algorithm specifications, see [SM2](crypto-sign-sig-verify-overview.md#sm2).
23 …is-crypto-architecture-kit/_crypto_signature_api.md#oh_cryptoverify_final) to verify the signature.
36 OH_CryptoVerify *verify = nullptr;
86 // verify
87 ret = OH_CryptoVerify_Create((const char *)"SM2_256|SM3", &verify);
89 OH_CryptoVerify_Destroy(verify);
93 ret = OH_CryptoVerify_Init(verify, pubKey);
95 OH_CryptoVerify_Destroy(verify);
99 bool res = OH_CryptoVerify_Final(verify, &msgBlob, &signBlob);
101 OH_CryptoVerify_Destroy(verify);
106 OH_CryptoVerify_Destroy(verify);