Home
last modified time | relevance | path

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

/ohos5.0/base/security/crypto_framework/frameworks/spi/
H A Dcipher_factory_spi.h43 …HcfResult (*getCipherSpecUint8Array)(HcfCipherGeneratorSpi *self, CipherSpecItem item, HcfBlob *re… member
/ohos5.0/base/security/crypto_framework/interfaces/innerkits/crypto_operation/
H A Dcipher.h71 …HcfResult (*getCipherSpecUint8Array)(HcfCipher *self, CipherSpecItem item, HcfBlob *returnUint8Arr… member
/ohos5.0/base/security/crypto_framework/frameworks/cj/src/
H A Dcipher_impl.cpp84 return cipher_->getCipherSpecUint8Array(cipher_, item, returnUint8Array); in GetCipherSpecUint8Array()
/ohos5.0/base/security/crypto_framework/frameworks/crypto_operation/
H A Dcipher.c272 return impl->spiObj->getCipherSpecUint8Array(impl->spiObj, item, returnUint8Array); in GetCipherSpecUint8Array()
327 cipher->super.getCipherSpecUint8Array = GetCipherSpecUint8Array; in InitCipher()
/ohos5.0/base/security/crypto_framework/frameworks/native/src/
H A Dsym_cipher.c43 …HcfResult (*getCipherSpecUint8Array)(HcfCipher *self, CipherSpecItem item, HcfBlob *returnUint8Arr… member
/ohos5.0/base/security/crypto_framework/test/unittest/src/
H A Dcrypto_rsa_cipher_test.cpp170 res = cipher->getCipherSpecUint8Array(cipher, OAEP_MGF1_PSRC_UINT8ARR, &pSourceReturn); in RsaCipherSpec()
189 res = cipher->getCipherSpecUint8Array(cipher, OAEP_MGF1_PSRC_UINT8ARR, &pSourceReturn); in RsaSpecpSource()
196 res = cipher->getCipherSpecUint8Array(cipher, OAEP_MGF1_PSRC_UINT8ARR, &pSourceReturn); in RsaSpecpSource()
202 res = cipher->getCipherSpecUint8Array(cipher, OAEP_MGF1_PSRC_UINT8ARR, &pSourceReturn2); in RsaSpecpSource()
1837 res = cipher->getCipherSpecUint8Array(cipher, OAEP_MD_NAME_STR, nullptr);
1864 res = cipher->getCipherSpecUint8Array(nullptr, OAEP_MD_NAME_STR, nullptr);
1892 res = cipher->getCipherSpecUint8Array(cipher, OAEP_MD_NAME_STR, &retBlob);
H A Dcrypto_rsa_cipher_sub_test.cpp248 …res = cipher->getCipherSpecUint8Array(reinterpret_cast<HcfCipher *>(&g_obj), OAEP_MGF1_PSRC_UINT8A…
278 res = cipher->getCipherSpecUint8Array(cipher, OAEP_MGF1_PSRC_UINT8ARR, &retBlob);
H A Dcrypto_3des_cipher_test.cpp1747 ret = cipher->getCipherSpecUint8Array(nullptr, SM2_MD_NAME_STR, nullptr);
1834 ret = cipher->getCipherSpecUint8Array(nullptr, OAEP_MGF1_MD_STR, &dataArray);
H A Dcrypto_sm4_cipher_test.cpp952 ret = cipher->getCipherSpecUint8Array(nullptr, OAEP_MGF1_MD_STR, &dataArray);
H A Dcrypto_sm2_cipher_test.cpp1131 res = cipher->getCipherSpecUint8Array(cipher, SM2_MD_NAME_STR, &returnUint8Array);
/ohos5.0/base/security/crypto_framework/plugin/openssl_plugin/crypto_operation/cipher/src/
H A Dcipher_sm2_openssl.c296 returnImpl->super.getCipherSpecUint8Array = GetSm2CipherSpecUint8Array; in HcfCipherSm2CipherSpiCreate()
H A Dcipher_3des_openssl.c319 returnImpl->base.getCipherSpecUint8Array = GetDesCipherSpecUint8Array; in HcfCipherDesGeneratorSpiCreate()
H A Dcipher_rsa_openssl.c512 returnImpl->super.getCipherSpecUint8Array = GetRsaCipherSpecUint8Array; in HcfCipherRsaCipherSpiCreate()
H A Dcipher_sm4_openssl.c689 returnImpl->base.getCipherSpecUint8Array = GetSm4CipherSpecUint8Array; in HcfCipherSm4GeneratorSpiCreate()
H A Dcipher_aes_openssl.c832 returnImpl->base.getCipherSpecUint8Array = GetAesCipherSpecUint8Array; in HcfCipherAesGeneratorSpiCreate()
/ohos5.0/base/security/crypto_framework/test/unittest/src/aes_cipher/
H A Dcrypto_aes_cipher_test.cpp844 ret = cipher->getCipherSpecUint8Array(nullptr, OAEP_MGF1_MD_STR, &dataArray);
/ohos5.0/base/security/crypto_framework/frameworks/js/napi/crypto/src/
H A Dnapi_cipher.cpp901 HcfResult res = cipher->getCipherSpecUint8Array(cipher, item, &blob); in GetCipherSpecUint8Array()