Home
last modified time | relevance | path

Searched refs:getCipherSpecString (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/base/security/crypto_framework/frameworks/spi/
H A Dcipher_factory_spi.h41 …HcfResult (*getCipherSpecString)(HcfCipherGeneratorSpi *self, CipherSpecItem item, char **returnSt… member
/ohos5.0/base/security/crypto_framework/interfaces/innerkits/crypto_operation/
H A Dcipher.h69 HcfResult (*getCipherSpecString)(HcfCipher *self, CipherSpecItem item, char **returnString); member
/ohos5.0/base/security/crypto_framework/test/unittest/src/
H A Dcrypto_sm2_cipher_test.cpp911 res = cipher->getCipherSpecString(cipher, SM2_MD_NAME_STR, &returnStr);
939 res = cipher->getCipherSpecString(cipher, OAEP_MGF1_PSRC_UINT8ARR, &returnStr);
966 res = cipher->getCipherSpecString(cipher, SM2_MD_NAME_STR, nullptr);
993 res = cipher->getCipherSpecString(nullptr, SM2_MD_NAME_STR, &returnStr);
1021 res = cipher->getCipherSpecString(cipher, SM2_MD_NAME_STR, &returnStr);
1049 res = cipher->getCipherSpecString(cipher, OAEP_MGF1_PSRC_UINT8ARR, &returnStr);
1076 res = cipher->getCipherSpecString(cipher, SM2_MD_NAME_STR, nullptr);
1103 res = cipher->getCipherSpecString(nullptr, SM2_MD_NAME_STR, &returnStr);
1195 res = cipher->getCipherSpecString(cipher, SM2_MD_NAME_STR, &returnStr);
H A Dcrypto_rsa_cipher_test.cpp157 res = cipher->getCipherSpecString(cipher, OAEP_MD_NAME_STR, &returnMdName); in RsaCipherSpec()
161 res = cipher->getCipherSpecString(cipher, OAEP_MGF_NAME_STR, &returnMgF1Name); in RsaCipherSpec()
165 res = cipher->getCipherSpecString(cipher, OAEP_MGF1_MD_STR, &returnMgf1MdName); in RsaCipherSpec()
1753 res = cipher->getCipherSpecString(cipher, OAEP_MD_NAME_STR, nullptr);
1780 res = cipher->getCipherSpecString(nullptr, OAEP_MD_NAME_STR, nullptr);
1808 res = cipher->getCipherSpecString(cipher, OAEP_MGF1_PSRC_UINT8ARR, &ret);
H A Dcrypto_3des_cipher_test.cpp1745 ret = cipher->getCipherSpecString(nullptr, SM2_MD_NAME_STR, nullptr);
1831 ret = cipher->getCipherSpecString(nullptr, OAEP_MGF1_MD_STR, nullptr);
H A Dcrypto_rsa_cipher_sub_test.cpp218 … res = cipher->getCipherSpecString(reinterpret_cast<HcfCipher *>(&g_obj), OAEP_MD_NAME_STR, &ret);
H A Dcrypto_sm4_cipher_test.cpp949 ret = cipher->getCipherSpecString(nullptr, OAEP_MGF1_MD_STR, nullptr);
/ohos5.0/base/security/crypto_framework/frameworks/cj/src/
H A Dcipher_impl.cpp75 return cipher_->getCipherSpecString(cipher_, item, &returnString); in GetCipherSpecString()
/ohos5.0/base/security/crypto_framework/frameworks/crypto_operation/
H A Dcipher.c254 return impl->spiObj->getCipherSpecString(impl->spiObj, item, returnString); in GetCipherSpecString()
326 cipher->super.getCipherSpecString = GetCipherSpecString; in InitCipher()
/ohos5.0/base/security/crypto_framework/frameworks/native/src/
H A Dsym_cipher.c41 HcfResult (*getCipherSpecString)(HcfCipher *self, CipherSpecItem item, char **returnString); member
/ohos5.0/base/security/crypto_framework/plugin/openssl_plugin/crypto_operation/cipher/src/
H A Dcipher_sm2_openssl.c295 returnImpl->super.getCipherSpecString = GetSm2CipherSpecString; in HcfCipherSm2CipherSpiCreate()
H A Dcipher_3des_openssl.c318 returnImpl->base.getCipherSpecString = GetDesCipherSpecString; in HcfCipherDesGeneratorSpiCreate()
H A Dcipher_rsa_openssl.c511 returnImpl->super.getCipherSpecString = GetRsaCipherSpecString; in HcfCipherRsaCipherSpiCreate()
H A Dcipher_sm4_openssl.c688 returnImpl->base.getCipherSpecString = GetSm4CipherSpecString; in HcfCipherSm4GeneratorSpiCreate()
H A Dcipher_aes_openssl.c831 returnImpl->base.getCipherSpecString = GetAesCipherSpecString; in HcfCipherAesGeneratorSpiCreate()
/ohos5.0/base/security/crypto_framework/test/unittest/src/aes_cipher/
H A Dcrypto_aes_cipher_test.cpp841 ret = cipher->getCipherSpecString(nullptr, OAEP_MGF1_MD_STR, nullptr);
/ohos5.0/base/security/crypto_framework/frameworks/js/napi/crypto/src/
H A Dnapi_cipher.cpp885 HcfResult res = cipher->getCipherSpecString(cipher, item, &returnString); in GetCipherSpecString()