[CP] fix access_key decrypt bug

This commit is contained in:
WenJinyu
2023-01-06 04:08:09 +00:00
committed by ob-robot
parent 82de09db7c
commit 889807b98b
3 changed files with 22 additions and 1 deletions

View File

@ -43,6 +43,11 @@ int hex_to_cstr(const void *in_data,
const int64_t data_lenth,
char *buff,
const int64_t buff_size);
int hex_to_cstr(const void *in_data,
const int64_t data_length,
char *buff,
const int64_t buff_size,
int64_t &pos);
/**
* convert the input buffer into hex string, not include '\0'
*