Home
last modified time | relevance | path

Searched refs:impl (Results 1 – 25 of 267) sorted by relevance

1234567891011

/base/security/device_auth/services/session_manager/src/session/
Ddev_session_fwk.c38 static int32_t StartV1Session(SessionImpl *impl, CJson **sendMsg) in StartV1Session() argument
41 (void)GetBoolFromJson(impl->context, FIELD_IS_BIND, &isBind); in StartV1Session()
43 int32_t res = CreateCompatibleSubSession(subSessionType, impl->context, &impl->base.callback, in StartV1Session()
44 &impl->compatibleSubSession); in StartV1Session()
50 res = ProcessCompatibleSubSession(impl->compatibleSubSession, impl->context, sendMsg, &status); in StartV1Session()
53 DestroyCompatibleSubSession(impl->compatibleSubSession); in StartV1Session()
54 impl->compatibleSubSession = NULL; in StartV1Session()
66 SessionImpl *impl = (SessionImpl *)self; in DestroySession() local
67 HcFree(impl->base.appId); in DestroySession()
68 FreeJson(impl->context); in DestroySession()
[all …]
/base/global/i18n_lite/frameworks/i18n/src/
Ddate_time_format.cpp37 if (impl != nullptr) { in ~DateTimeFormat()
38 delete impl; in ~DateTimeFormat()
39 impl = nullptr; in ~DateTimeFormat()
45 if (impl != nullptr) { in Init()
46 delete impl; in Init()
47 impl = nullptr; in Init()
49 impl = new(nothrow) DateTimeFormatImpl(requestPattern, locale); in Init()
50 if (impl == nullptr) { in Init()
58 isSuccess = impl->Init(resource); in Init()
65 delete impl; in Init()
[all …]
Dnumber_format.cpp33 if (impl != nullptr) { in Init()
34 delete impl; in Init()
36 impl = new NumberFormatImpl(mLocale, status); in Init()
37 if (impl == nullptr) { in Init()
48 return impl->Init(resource); in Init()
54 if (impl != nullptr) { in ~NumberFormat()
55 delete impl; in ~NumberFormat()
56 impl = nullptr; in ~NumberFormat()
66 return impl->Format(num, type, status); in Format()
74 return impl->Format(num, status); in Format()
[all …]
Dplural_format.cpp32 if (impl != nullptr) { in ~PluralFormat()
33 delete impl; in ~PluralFormat()
34 impl = nullptr; in ~PluralFormat()
40 if (impl != nullptr) { in Init()
41 delete impl; in Init()
44 impl = new PluralFormatImpl(mLocale, status); in Init()
45 if (impl == nullptr) { in Init()
56 return impl->Init(resource); in Init()
61 if (impl == nullptr) { in GetPluralRuleIndex()
67 return impl->GetPluralRuleIndex(number, status); in GetPluralRuleIndex()
[all …]
/base/security/crypto_framework/plugin/openssl_plugin/crypto_operation/signature/src/
Ddsa_openssl.c74 HcfSignSpiDsaOpensslImpl *impl = (HcfSignSpiDsaOpensslImpl *)self; in IsSignInitInputValid() local
75 if (impl->status != UNINITIALIZED) { in IsSignInitInputValid()
92 HcfVerifySpiDsaOpensslImpl *impl = (HcfVerifySpiDsaOpensslImpl *)self; in IsVerifyInitInputValid() local
93 if (impl->status != UNINITIALIZED) { in IsVerifyInitInputValid()
133 HcfSignSpiDsaOpensslImpl *impl = (HcfSignSpiDsaOpensslImpl *)self; in DestroyDsaSign() local
134 if (impl->mdCtx != NULL) { in DestroyDsaSign()
135 Openssl_EVP_MD_CTX_free(impl->mdCtx); in DestroyDsaSign()
136 impl->mdCtx = NULL; in DestroyDsaSign()
138 if (impl->pkeyCtx != NULL) { in DestroyDsaSign()
139 Openssl_EVP_PKEY_CTX_free(impl->pkeyCtx); in DestroyDsaSign()
[all …]
Dsignature_rsa_openssl.c92 HcfSignSpiRsaOpensslImpl *impl = (HcfSignSpiRsaOpensslImpl *)self; in DestroyRsaSign() local
93 Openssl_EVP_MD_CTX_free(impl->mdctx); in DestroyRsaSign()
94 impl->mdctx = NULL; in DestroyRsaSign()
96 HcfFree(impl); in DestroyRsaSign()
97 impl = NULL; in DestroyRsaSign()
111 HcfVerifySpiRsaOpensslImpl *impl = (HcfVerifySpiRsaOpensslImpl *)self; in DestroyRsaVerify() local
112 Openssl_EVP_MD_CTX_free(impl->mdctx); in DestroyRsaVerify()
113 impl->mdctx = NULL; in DestroyRsaVerify()
114 HcfFree(impl); in DestroyRsaVerify()
115 impl = NULL; in DestroyRsaVerify()
[all …]
Dsm2_openssl.c78 HcfSignSpiSm2OpensslImpl *impl = (HcfSignSpiSm2OpensslImpl *)self; in DestroySm2Sign() local
79 impl->digestAlg = NULL; in DestroySm2Sign()
80 if (impl->ctx != NULL) { in DestroySm2Sign()
81 Openssl_EVP_MD_CTX_free(impl->ctx); in DestroySm2Sign()
82 impl->ctx = NULL; in DestroySm2Sign()
84 HcfFree(impl); in DestroySm2Sign()
92 HcfVerifySpiSm2OpensslImpl *impl = (HcfVerifySpiSm2OpensslImpl *)self; in DestroySm2Verify() local
93 impl->digestAlg = NULL; in DestroySm2Verify()
94 if (impl->ctx != NULL) { in DestroySm2Verify()
95 Openssl_EVP_MD_CTX_free(impl->ctx); in DestroySm2Verify()
[all …]
Decdsa_openssl.c83 HcfSignSpiEcdsaOpensslImpl *impl = (HcfSignSpiEcdsaOpensslImpl *)self; in DestroyEcdsaSign() local
84 Openssl_EVP_MD_CTX_free(impl->ctx); in DestroyEcdsaSign()
85 impl->ctx = NULL; in DestroyEcdsaSign()
86 HcfFree(impl); in DestroyEcdsaSign()
97 HcfVerifySpiEcdsaOpensslImpl *impl = (HcfVerifySpiEcdsaOpensslImpl *)self; in DestroyEcdsaVerify() local
98 Openssl_EVP_MD_CTX_free(impl->ctx); in DestroyEcdsaVerify()
99 impl->ctx = NULL; in DestroyEcdsaVerify()
100 HcfFree(impl); in DestroyEcdsaVerify()
115 HcfSignSpiEcdsaOpensslImpl *impl = (HcfSignSpiEcdsaOpensslImpl *)self; in EngineSignInit() local
116 if (impl->status != UNINITIALIZED) { in EngineSignInit()
[all …]
/base/security/device_auth/services/session_manager/src/session/v2/auth_sub_session/
Dauth_sub_session.c63 AuthSubSessionImpl *impl = (AuthSubSessionImpl *)self; in StartAuthSubSession() local
64 BaseProtocol *protocol = impl->instance; in StartAuthSubSession()
69 impl->base.state = AUTH_STATE_RUNNING; in StartAuthSubSession()
79 AuthSubSessionImpl *impl = (AuthSubSessionImpl *)self; in ProcessAuthSubSession() local
80 BaseProtocol *protocol = impl->instance; in ProcessAuthSubSession()
85impl->base.state = (protocol->curState == protocol->finishState) ? AUTH_STATE_FINISH : AUTH_STATE_… in ProcessAuthSubSession()
95 AuthSubSessionImpl *impl = (AuthSubSessionImpl *)self; in SetPsk() local
96 return impl->instance->setPsk(impl->instance, psk); in SetPsk()
105 AuthSubSessionImpl *impl = (AuthSubSessionImpl *)self; in SetSelfProtectedMsg() local
106 return impl->instance->setSelfProtectedMsg(impl->instance, selfMsg); in SetSelfProtectedMsg()
[all …]
/base/security/device_auth/services/session_manager/src/session/v2/
Ddev_session_v2.c79 int32_t (*cmdGenerator)(SessionImpl *impl);
82 typedef bool (*CmdInterceptor)(SessionImpl *impl, CmdProcessor processor);
84 static int32_t CmdExchangePkGenerator(SessionImpl *impl) in CmdExchangePkGenerator() argument
87 if (GetIntFromJson(impl->context, FIELD_USER_TYPE, &userType) != HC_SUCCESS) { in CmdExchangePkGenerator()
91 const char *groupId = GetStringFromJson(impl->context, FIELD_GROUP_ID); in CmdExchangePkGenerator()
96 const char *authId = GetStringFromJson(impl->context, FIELD_AUTH_ID); in CmdExchangePkGenerator()
103 …return impl->expandSubSession->addCmd(impl->expandSubSession, PUB_KEY_EXCHANGE_CMD_TYPE, (void *)&… in CmdExchangePkGenerator()
104 (!impl->isClient), ABORT_IF_ERROR); in CmdExchangePkGenerator()
107 static int32_t CmdImportAuthCodeGenerator(SessionImpl *impl) in CmdImportAuthCodeGenerator() argument
110 if (GetIntFromJson(impl->context, FIELD_USER_TYPE, &userType) != HC_SUCCESS) { in CmdImportAuthCodeGenerator()
[all …]
/base/useriam/user_auth_framework/frameworks/native/client/src/
Duser_auth_callback_service.cpp27 …erAuthCallbackService::UserAuthCallbackService(const std::shared_ptr<AuthenticationCallback> &impl) in UserAuthCallbackService() argument
28 : authCallback_(impl), in UserAuthCallbackService()
31 CallbackManager::CallbackAction action = [impl]() { in UserAuthCallbackService()
32 if (impl != nullptr) { in UserAuthCallbackService()
35 impl->OnResult(GENERAL_ERROR, extraInfo); in UserAuthCallbackService()
41 …erAuthCallbackService::UserAuthCallbackService(const std::shared_ptr<IdentificationCallback> &impl) in UserAuthCallbackService() argument
42 : identifyCallback_(impl), in UserAuthCallbackService()
45 CallbackManager::CallbackAction action = [impl]() { in UserAuthCallbackService()
46 if (impl != nullptr) { in UserAuthCallbackService()
49 impl->OnResult(GENERAL_ERROR, extraInfo); in UserAuthCallbackService()
[all …]
Duser_idm_callback_service.cpp27 IdmCallbackService::IdmCallbackService(const std::shared_ptr<UserIdmClientCallback> &impl) in IdmCallbackService() argument
28 : idmClientCallback_(impl), in IdmCallbackService()
31 CallbackManager::CallbackAction action = [impl]() { in IdmCallbackService()
32 if (impl != nullptr) { in IdmCallbackService()
35 impl->OnResult(GENERAL_ERROR, extraInfo); in IdmCallbackService()
68 const std::shared_ptr<GetCredentialInfoCallback> &impl) : getCredInfoCallback_(impl) in IdmGetCredInfoCallbackService() argument
70 CallbackManager::CallbackAction action = [impl]() { in IdmGetCredInfoCallbackService()
71 if (impl != nullptr) { in IdmGetCredInfoCallbackService()
74 impl->OnCredentialInfo(infoList); in IdmGetCredInfoCallbackService()
97 const std::shared_ptr<GetSecUserInfoCallback> &impl) : getSecInfoCallback_(impl) in IdmGetSecureUserInfoCallbackService() argument
[all …]
Dwidget_callback_service.cpp27 WidgetCallbackService::WidgetCallbackService(const std::shared_ptr<IUserAuthWidgetCallback> &impl) in WidgetCallbackService() argument
28 : widgetCallback_(impl), in WidgetCallbackService()
31 CallbackManager::CallbackAction action = [impl]() { in WidgetCallbackService()
32 if (impl != nullptr) { in WidgetCallbackService()
35 impl->SendCommand(command); in WidgetCallbackService()
/base/security/crypto_framework/plugin/openssl_plugin/crypto_operation/cipher/src/
Dcipher_rsa_openssl.c115 static HcfResult InitEvpPkeyCtx(HcfCipherRsaGeneratorSpiImpl *impl, HcfKey *key, enum HcfCryptoMode… in InitEvpPkeyCtx() argument
131 impl->ctx = EVP_PKEY_CTX_new(pkey, NULL); in InitEvpPkeyCtx()
132 if (impl->ctx == NULL) { in InitEvpPkeyCtx()
140 sslRet = Openssl_EVP_PKEY_encrypt_init(impl->ctx); in InitEvpPkeyCtx()
142 sslRet = Openssl_EVP_PKEY_decrypt_init(impl->ctx); in InitEvpPkeyCtx()
148 Openssl_EVP_PKEY_CTX_free(impl->ctx); in InitEvpPkeyCtx()
183 static HcfResult SetDetailParams(HcfCipherRsaGeneratorSpiImpl *impl) in SetDetailParams() argument
185 CipherAttr attr = impl->attr; in SetDetailParams()
188 if (Openssl_EVP_PKEY_CTX_set_rsa_padding(impl->ctx, opensslPadding) != HCF_OPENSSL_SUCCESS) { in SetDetailParams()
202 if (Openssl_EVP_PKEY_CTX_set_rsa_oaep_md(impl->ctx, md) != HCF_OPENSSL_SUCCESS in SetDetailParams()
[all …]
Dcipher_sm2_openssl.c67 static HcfResult InitSm2Key(HcfCipherSm2GeneratorSpiImpl *impl, HcfKey *key, enum HcfCryptoMode opM… in InitSm2Key() argument
70 impl->sm2Key = Openssl_EC_KEY_dup(((HcfOpensslSm2PubKey *)key)->ecKey); in InitSm2Key()
72 impl->sm2Key = Openssl_EC_KEY_dup(((HcfOpensslSm2PriKey *)key)->ecKey); in InitSm2Key()
77 if (impl->sm2Key == NULL) { in InitSm2Key()
96 HcfCipherSm2GeneratorSpiImpl *impl = (HcfCipherSm2GeneratorSpiImpl *)self; in EngineInit() local
97 if (impl->initFlag != UNINITIALIZED) { in EngineInit()
106 impl->attr.mode = (int32_t)opMode; in EngineInit()
107 if (InitSm2Key(impl, key, opMode) != HCF_SUCCESS) { in EngineInit()
111 impl->initFlag = INITIALIZED; in EngineInit()
124 static size_t GetTextLen(HcfCipherSm2GeneratorSpiImpl *impl, HcfBlob *input, int32_t mode) in GetTextLen() argument
[all …]
/base/security/device_auth/services/session_manager/src/session/v2/expand_sub_session/
Dexpand_sub_session.c95 static int32_t EncryptMsg(ExpandSubSessionImpl *impl, Uint8Buff *rawData, Uint8Buff *returnEncData) in EncryptMsg() argument
104 GcmParam gcmParam = { impl->nonce.val, impl->nonce.length, in EncryptMsg()
106 int32_t res = GetLoaderInstance()->aesGcmEncrypt(&impl->encKey, rawData, in EncryptMsg()
118 static int32_t DecryptMsg(ExpandSubSessionImpl *impl, Uint8Buff *encData, Uint8Buff *returnRawData) in DecryptMsg() argument
127 GcmParam gcmParam = { impl->nonce.val, impl->nonce.length, in DecryptMsg()
129 int32_t res = GetLoaderInstance()->aesGcmDecrypt(&impl->encKey, encData, in DecryptMsg()
164 static int32_t GetRecvCmdList(ExpandSubSessionImpl *impl, const CJson *receviedMsg, CJson **cmdList) in GetRecvCmdList() argument
172 res = DecryptMsg(impl, &recvEncData, &recvRawData); in GetRecvCmdList()
233 static int32_t ProcRecvCmd(ExpandSubSessionImpl *impl, const CJson *recvCmd, CJson *sendCmdList) in ProcRecvCmd() argument
247 FOR_EACH_HC_VECTOR(impl->cmdList, index, iter) { in ProcRecvCmd()
[all …]
/base/security/crypto_framework/plugin/openssl_plugin/key/sym_key_generator/src/
Dsym_key_openssl.c47 SymKeyImpl *impl = (SymKeyImpl *)self; in GetEncoded() local
48 if ((impl->keyMaterial.data == NULL) || (impl->keyMaterial.len == 0)) { in GetEncoded()
52 key->data = (uint8_t *)HcfMalloc(impl->keyMaterial.len, 0); in GetEncoded()
57 (void)memcpy_s(key->data, impl->keyMaterial.len, impl->keyMaterial.data, impl->keyMaterial.len); in GetEncoded()
58 key->len = impl->keyMaterial.len; in GetEncoded()
72 SymKeyImpl *impl = (SymKeyImpl *)self; in ClearMem() local
73 if ((impl->keyMaterial.data != NULL) && (impl->keyMaterial.len > 0)) { in ClearMem()
74 (void)memset_s(impl->keyMaterial.data, impl->keyMaterial.len, 0, impl->keyMaterial.len); in ClearMem()
112 SymKeyImpl *impl = (SymKeyImpl *)self; in GetAlgorithm() local
113 return (const char *)impl->algoName; in GetAlgorithm()
[all …]
/base/global/resource_management/frameworks/resmgr/src/
Dsystem_resource_manager.cpp79 ResourceManagerImpl *impl = new (std::nothrow) ResourceManagerImpl; in CreateSystemResourceManager() local
80 if (impl == nullptr) { in CreateSystemResourceManager()
84 if (!impl->Init(true)) { in CreateSystemResourceManager()
85 delete impl; in CreateSystemResourceManager()
88 if (!LoadSystemResource(impl, isSandbox)) { in CreateSystemResourceManager()
89 delete impl; in CreateSystemResourceManager()
92 resourceManager_ = impl; in CreateSystemResourceManager()
97 bool SystemResourceManager::LoadSystemResource(ResourceManagerImpl *impl, bool isSandbox) in LoadSystemResource() argument
109 return impl->AddResource(sysPkgNamePath.c_str(), overlayPaths); in LoadSystemResource()
111 return impl->AddResource(sysPkgNamePath.c_str()); in LoadSystemResource()
[all …]
/base/security/device_auth/deps_adapter/
DBUILD.gn36 "${key_management_adapter_path}/impl/src/mini/huks_adapter.c",
37 "${os_adapter_path}/impl/src/liteos/hc_condition.c",
38 "${os_adapter_path}/impl/src/liteos/hc_dev_info.c",
39 "${os_adapter_path}/impl/src/liteos/hc_thread.c",
40 "${os_adapter_path}/impl/src/liteos/hc_types.c",
41 "${os_adapter_path}/impl/src/liteos/mini/hc_init_protection.c",
45 sources += [ "${os_adapter_path}/impl/src/liteos/mini/hc_file_posix.c" ]
47 sources += [ "${os_adapter_path}/impl/src/liteos/mini/hc_file.c" ]
81 "${key_management_adapter_path}/impl/src/small/huks_adapter.c",
82 "${key_management_adapter_path}/impl/src/small/mbedtls_ec_adapter.c",
[all …]
Ddeviceauth_hals.gni25 "${key_management_adapter_path}/impl/inc",
34 "${key_management_adapter_path}/impl/inc",
42 "${common_lib_path}/impl/src/hc_parcel.c",
43 "${common_lib_path}/impl/src/hc_string.c",
44 "${common_lib_path}/impl/src/hc_string_vector.c",
45 "${common_lib_path}/impl/src/hc_tlv_parser.c",
46 "${common_lib_path}/impl/src/json_utils.c",
47 "${common_lib_path}/impl/src/string_util.c",
48 "${common_lib_path}/impl/src/uint8buff_utils.c",
49 "${key_management_adapter_path}/impl/src/alg_loader.c",
[all …]
/base/security/crypto_framework/plugin/openssl_plugin/key/asy_key_generator/src/
Dsm2_asy_key_generator_openssl.c96 HcfOpensslSm2PubKey *impl = (HcfOpensslSm2PubKey *)self; in DestroySm2PubKey() local
97 Openssl_EC_KEY_free(impl->ecKey); in DestroySm2PubKey()
98 impl->ecKey = NULL; in DestroySm2PubKey()
99 HcfFree(impl); in DestroySm2PubKey()
110 HcfOpensslSm2PriKey *impl = (HcfOpensslSm2PriKey *)self; in DestroySm2PriKey() local
111 Openssl_EC_KEY_free(impl->ecKey); in DestroySm2PriKey()
112 impl->ecKey = NULL; in DestroySm2PriKey()
113 HcfFree(impl); in DestroySm2PriKey()
124 HcfOpensslSm2KeyPair *impl = (HcfOpensslSm2KeyPair *)self; in DestroySm2KeyPair() local
125 if (impl->base.pubKey != NULL) { in DestroySm2KeyPair()
[all …]
/base/security/device_auth/test/unittest/tdd_framework/tdd_helper/
DBUILD.gn35 "${key_management_adapter_path}/impl/src/standard/crypto_hash_to_point.c",
36 "${key_management_adapter_path}/impl/src/standard/huks_adapter.c",
37 "${key_management_adapter_path}/impl/src/standard/mbedtls_ec_adapter.c",
38 "${os_adapter_path}/impl/src/hc_log.c",
39 "${os_adapter_path}/impl/src/linux/hc_condition.c",
40 "${os_adapter_path}/impl/src/linux/hc_dev_info.c",
41 "${os_adapter_path}/impl/src/linux/hc_file.c",
42 "${os_adapter_path}/impl/src/linux/hc_init_protection.c",
43 "${os_adapter_path}/impl/src/linux/hc_thread.c",
44 "${os_adapter_path}/impl/src/linux/hc_types.c",
[all …]
/base/security/device_auth/services/session_manager/src/session/v2/auth_sub_session/protocol_lib/
Dec_speke_protocol.c79 … int32_t (*stateProcessFunc)(EcSpekeProtocol *impl, const CJson *inputEvent, CJson **outputEvent);
176 static int32_t EcSpekeClientStartReq(EcSpekeProtocol *impl, const CJson *inputEvent, CJson **output… in EcSpekeClientStartReq() argument
179 return EcSpekeClientStartReqBuildEvent(&impl->params, outputEvent); in EcSpekeClientStartReq()
505 static int32_t CombineProtectedMsg(EcSpekeProtocol *impl, bool isVerify, Uint8Buff *kcfDataMsg, uin… in CombineProtectedMsg() argument
507 …Uint8Buff *firstProtectedMsg = isVerify ? &(impl->base.protectedMsg.peerMsg) : &(impl->base.protec… in CombineProtectedMsg()
508 …Uint8Buff *secondProtectedMsg = isVerify ? &(impl->base.protectedMsg.selfMsg) : &(impl->base.prote… in CombineProtectedMsg()
527 static int32_t GenerateKcfDataMsg(EcSpekeProtocol *impl, bool isClient, bool isVerify, Uint8Buff *k… in GenerateKcfDataMsg() argument
529 EcSpekeParams *params = &impl->params; in GenerateKcfDataMsg()
562 return CombineProtectedMsg(impl, isVerify, kcfDataMsg, usedLen); in GenerateKcfDataMsg()
569 static int32_t CalKcfDataSelf(EcSpekeProtocol *impl, bool isClient) in CalKcfDataSelf() argument
[all …]
Diso_protocol.c69 int32_t (*stateProcessFunc)(IsoProtocol *impl, const CJson *inputEvent, CJson **outputEvent);
208 static int32_t IsoGenSessionKey(IsoProtocol *impl, bool isClient) in IsoGenSessionKey() argument
210 int32_t hkdfSaltLen = impl->params.randPeer.length + impl->params.randSelf.length; in IsoGenSessionKey()
217 int32_t res = IsoCombineHkdfSalt(&impl->params, &hkdfSaltBuf, isClient); in IsoGenSessionKey()
226 …res = GetLoaderInstance()->computeHkdf(&impl->params.psk, &hkdfSaltBuf, &keyInfoBuf, &sessionKey, … in IsoGenSessionKey()
232 if (DeepCopyUint8Buff(&sessionKey, &impl->base.sessionKey) != HC_SUCCESS) { in IsoGenSessionKey()
296 static int32_t ClientGenRandom(IsoProtocol *impl, const CJson *inputEvent, CJson **outputEvent) in ClientGenRandom() argument
299 int32_t res = ClientGenRandomProcEvent(&impl->params); in ClientGenRandom()
303 return ClientGenRandomBuildEvent(&impl->params, outputEvent); in ClientGenRandom()
341 static int32_t ServerGenTokenProcEvent(IsoProtocol *impl) in ServerGenTokenProcEvent() argument
[all …]
/base/security/crypto_framework/frameworks/crypto_operation/
Dcipher.c206 CipherGenImpl *impl = (CipherGenImpl *)self; in CipherDestroy() local
207 HcfObjDestroy(impl->spiObj); in CipherDestroy()
208 HcfFree(impl); in CipherDestroy()
227 CipherGenImpl *impl = (CipherGenImpl *)self; in SetCipherSpecUint8Array() local
228 return impl->spiObj->setCipherSpecUint8Array(impl->spiObj, item, pSource); in SetCipherSpecUint8Array()
250 CipherGenImpl *impl = (CipherGenImpl *)self; in GetCipherSpecString() local
251 return impl->spiObj->getCipherSpecString(impl->spiObj, item, returnString); in GetCipherSpecString()
268 CipherGenImpl *impl = (CipherGenImpl *)self; in GetCipherSpecUint8Array() local
269 return impl->spiObj->getCipherSpecUint8Array(impl->spiObj, item, returnUint8Array); in GetCipherSpecUint8Array()
283 CipherGenImpl *impl = (CipherGenImpl *)self; in CipherInit() local
[all …]

1234567891011