Searched refs:cipherText (Results 1 – 6 of 6) sorted by relevance
/drivers/peripheral/huks/hdi_service/ |
D | huks_hdi_template.h | 217 #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), \
|
D | huks_hdi_passthrough_adapter.h | 37 const struct HksBlob *plainText, struct HksBlob *cipherText); 40 const struct HksBlob *cipherText, struct HksBlob *plainText);
|
D | huks_sa_hdi_struct.h | 216 const struct HksBlob *plainText, struct HksBlob *cipherText); 227 const struct HksBlob *cipherText, struct HksBlob *plainText);
|
D | huks_hdi_passthrough_adapter.c | 181 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()
|
D | huks_hdi_service.c | 161 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/ |
D | IHuks.idl | 356 * @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,
|