Home
last modified time | relevance | path

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

/drivers/peripheral/huks/hdi_service/
Dhuks_hdi_template.h217 #define HDI_CONVERTER_FUNC_ENCRYPT(key, paramSet, plainText, cipherText, ret, func) \ argument
225 HDI_CONVERTER_PARAM_IN_BLOB(cipherText, &cipherTextCore) \
229 HDI_ADAPTER_PARAM(cipherText, &cipherTextCore)); \
230 HDI_CONVERTER_PARAM_OUT_BLOB(&cipherTextCore, cipherText)
232 #define HDI_CONVERTER_FUNC_DECRYPT(key, paramSet, cipherText, plainText, ret, func) \ argument
239 HDI_CONVERTER_PARAM_IN_BLOB(cipherText, &cipherTextCore) \
243 HDI_ADAPTER_PARAM(cipherText, &cipherTextCore), \
Dhuks_hdi_passthrough_adapter.h37 const struct HksBlob *plainText, struct HksBlob *cipherText);
40 const struct HksBlob *cipherText, struct HksBlob *plainText);
Dhuks_sa_hdi_struct.h216 const struct HksBlob *plainText, struct HksBlob *cipherText);
227 const struct HksBlob *cipherText, struct HksBlob *plainText);
Dhuks_hdi_passthrough_adapter.c181 const struct HksBlob *plainText, struct HksBlob *cipherText) in HuksHdiAdapterEncrypt() argument
188 return g_coreEngine->HuksHdiEncrypt(key, paramSet, plainText, cipherText); in HuksHdiAdapterEncrypt()
192 const struct HksBlob *cipherText, struct HksBlob *plainText) in HuksHdiAdapterDecrypt() argument
199 return g_coreEngine->HuksHdiDecrypt(key, paramSet, cipherText, plainText); in HuksHdiAdapterDecrypt()
Dhuks_hdi_service.c161 const struct HuksBlob *plainText, struct HuksBlob *cipherText) in HuksEncrypt() argument
165 HDI_CONVERTER_FUNC_ENCRYPT(encKey, paramSet, plainText, cipherText, ret, HuksHdiAdapterEncrypt) in HuksEncrypt()
170 const struct HuksBlob *cipherText, struct HuksBlob *plainText) in HuksDecrypt() argument
174 HDI_CONVERTER_FUNC_DECRYPT(encKey, paramSet, cipherText, plainText, ret, HuksHdiAdapterDecrypt) in HuksDecrypt()
/drivers/interface/huks/v1_0/
DIHuks.idl356 * @param cipherText indicates the data {@link HuksBlob} in ciphertext.
365 [out] struct HuksBlob cipherText);
375 * @param cipherText indicates the data {@link HuksBlob} in ciphertext to decrypt.
384 …t([in] struct HuksBlob encKey, [in] struct HuksParamSet paramSet, [in] struct HuksBlob cipherText,