Lines Matching refs:decryptLen
440 unsigned char *decryptData, uint32_t *decryptLen)
442 if (cipherKey == NULL || input == NULL || inLen < GCM_IV_LEN || decryptData == NULL || decryptLen == NULL) {
455 *decryptLen = (uint32_t)result;
460 unsigned char *decryptData, uint32_t *decryptLen, int32_t seqNum)
463 return SoftBusDecryptData(cipherKey, input, inLen, decryptData, decryptLen);
516 AesCtrCipherKey *key, const unsigned char *input, uint32_t inLen, unsigned char *decryptData, uint32_t *decryptLen)
518 if (key == NULL || input == NULL || inLen == 0 || decryptData == NULL || decryptLen == NULL) {
523 *decryptLen = 0;
537 *decryptLen += len;
541 *decryptLen += len;