Lines Matching refs:verify
4 For details about the algorithm specifications, see [ECDSA](crypto-sign-sig-verify-overview.md#ecds…
23 …is-crypto-architecture-kit/_crypto_signature_api.md#oh_cryptoverify_final) to verify the signature.
36 OH_CryptoVerify *verify = nullptr;
83 // verify
84 ret = OH_CryptoVerify_Create((const char *)"ECC256|SHA256", &verify);
86 OH_CryptoVerify_Destroy(verify);
90 ret = OH_CryptoVerify_Init(verify, pubKey);
92 OH_CryptoVerify_Destroy(verify);
96 bool res = OH_CryptoVerify_Final(verify, &msgBlob, &signBlob);
98 OH_CryptoVerify_Destroy(verify);
103 OH_CryptoVerify_Destroy(verify);