Home
last modified time | relevance | path

Searched refs:setSignSpecInt (Results 1 – 6 of 6) sorted by relevance

/base/security/crypto_framework/interfaces/innerkits/crypto_operation/
Dsignature.h46 HcfResult (*setSignSpecInt)(HcfSign *self, SignSpecItem item, int32_t saltLen); member
/base/security/crypto_framework/test/unittest/src/
Dcrypto_rsa_sign_test.cpp935 res = sign->setSignSpecInt(sign, PSS_SALT_LEN_INT, PSS_NORMAL_SALTLEN);
957 res = sign->setSignSpecInt(sign, PSS_SALT_LEN_INT, PSS_INVLAID_SALTLEN);
981 res = sign->setSignSpecInt(sign, PSS_MD_NAME_STR, PSS_NORMAL_SALTLEN);
1005 res = sign->setSignSpecInt(sign, PSS_SALT_LEN_INT, PSS_NORMAL_SALTLEN);
1808 res = sign->setSignSpecInt(sign, PSS_SALT_LEN_INT, PSS_NORMAL_SALTLEN);
1848 res = sign->setSignSpecInt(sign, PSS_SALT_LEN_INT, PSS_NORMAL_SALTLEN);
Dcrypto_rsa_verify_test.cpp1070 res = sign->setSignSpecInt(sign, PSS_SALT_LEN_INT, PSS_NORMAL_SALTLEN);
1130 res = sign->setSignSpecInt(sign, PSS_SALT_LEN_INT, PSS_NORMAL_SALTLEN);
1193 res = sign->setSignSpecInt(sign, PSS_SALT_LEN_INT, PSS_NORMAL_SALTLEN);
Dcrypto_dsa_sign_test.cpp489 ret = sign->setSignSpecInt(sign, PSS_SALT_LEN_INT, 0);
/base/security/crypto_framework/frameworks/crypto_operation/
Dsignature.c441 returnSign->base.setSignSpecInt = SetSignSpecInt; in HcfSignCreate()
/base/security/crypto_framework/frameworks/js/napi/crypto/src/
Dnapi_sign.cpp676 HcfResult res = sign->setSignSpecInt(sign, item, saltLen); in JsSetSignSpec()