Home
last modified time | relevance | path

Searched refs:setVerifySpecInt (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/base/security/crypto_framework/frameworks/native/src/
H A Dsignature.c40 HcfResult (*setVerifySpecInt)(HcfVerify *self, SignSpecItem item, int32_t saltLen); member
117 … if ((value->data == NULL) || (value->len != sizeof(int32_t)) || (ctx->setVerifySpecInt == NULL)) { in OH_CryptoVerify_SetParam()
121 … ret = ctx->setVerifySpecInt((HcfVerify *)ctx, (SignSpecItem)type, *((int32_t *)value->data)); in OH_CryptoVerify_SetParam()
/ohos5.0/base/security/crypto_framework/frameworks/cj/src/
H A Dverify_impl.cpp69 return this->verify_->setVerifySpecInt(verify_, PSS_SALT_LEN_INT, itemValue); in SetVerifySpecByNum()
/ohos5.0/base/security/crypto_framework/interfaces/innerkits/crypto_operation/
H A Dsignature.h71 HcfResult (*setVerifySpecInt)(HcfVerify *self, SignSpecItem item, int32_t saltLen); member
/ohos5.0/base/security/crypto_framework/test/unittest/src/
H A Dcrypto_rsa_verify_test.cpp796 res = verify->setVerifySpecInt(verify, PSS_SALT_LEN_INT, PSS_NORMAL_SALTLEN);
825 res = verify->setVerifySpecInt(verify, PSS_SALT_LEN_INT, PSS_INVLAID_SALTLEN);
852 res = verify->setVerifySpecInt(verify, PSS_SALT_LEN_INT, PSS_NORMAL_SALTLEN);
996 res = verify->setVerifySpecInt(verify, PSS_SALT_LEN_INT, PSS_NORMAL_SALTLEN);
1085 res = verify->setVerifySpecInt(verify, PSS_SALT_LEN_INT, PSS_NORMAL_SALTLEN);
1146 res = verify->setVerifySpecInt(verify, PSS_SALT_LEN_INT, PSS_NORMAL_SALTLEN);
1205 res = verify->setVerifySpecInt(verify, PSS_SALT_LEN_INT, PSS_NORMAL_SALTLEN);
H A Dcrypto_dsa_verify_test.cpp85 ret = verify->setVerifySpecInt(verify, PSS_SALT_LEN_INT, 0);
H A Dcrypto_ed25519_verify_test.cpp359 ret = verify->setVerifySpecInt(verify, SM2_USER_ID_UINT8ARR, returnInt);
383 ret = verify->setVerifySpecInt(nullptr, SM2_USER_ID_UINT8ARR, returnInt);
H A Dcrypto_brainpool_no_length_verify_test.cpp1048 res = verify->setVerifySpecInt(verify, SM2_USER_ID_UINT8ARR, returnInt);
H A Dcrypto_sm2_verify_test.cpp1206 res = verify->setVerifySpecInt(verify, PSS_SALT_LEN_INT, saltlen);
/ohos5.0/base/security/crypto_framework/frameworks/crypto_operation/
H A Dsignature.c599 returnVerify->base.setVerifySpecInt = SetVerifySpecInt; in HcfVerifyCreate()
/ohos5.0/base/security/crypto_framework/frameworks/js/napi/crypto/src/
H A Dnapi_verify.cpp1114 HcfResult ret = verify->setVerifySpecInt(verify, PSS_SALT_LEN_INT, saltLen); in SetVerifySaltLenInt()