Home
last modified time | relevance | path

Searched refs:base64name (Results 1 – 2 of 2) sorted by relevance

/NetX-Duo-v6.2.1/common/src/
Dnx_utility.c360 UINT _nx_utility_base64_encode(UCHAR *name, UINT name_size, UCHAR *base64name, UINT base64name_size… in _nx_utility_base64_encode() argument
369 if ((name == NX_NULL) || (base64name == NX_NULL) || (bytes_copied == NX_NULL)) in _nx_utility_base64_encode()
421 base64name[j++] = (UCHAR)_nx_utility_base64_array[((UCHAR)name[i]) >> 2]; in _nx_utility_base64_encode()
430base64name[j++] = (UCHAR)_nx_utility_base64_array[((((UCHAR)name[i]) & 0x3) << 4) | (((UCHAR)name[… in _nx_utility_base64_encode()
436 base64name[j++] = (UCHAR)_nx_utility_base64_array[(((UCHAR)name[i]) & 0x3) << 4]; in _nx_utility_base64_encode()
447base64name[j++] = (UCHAR)_nx_utility_base64_array[((((UCHAR)name[i]) & 0xF) << 2) | (((UCHAR)name[… in _nx_utility_base64_encode()
453 base64name[j++] = (UCHAR)_nx_utility_base64_array[(((UCHAR)name[i]) & 0xF) << 2]; in _nx_utility_base64_encode()
462 base64name[j++] = (UCHAR)_nx_utility_base64_array[(((UCHAR)name[i]) & 0x3F)]; in _nx_utility_base64_encode()
473 base64name[j++] = '='; in _nx_utility_base64_encode()
477 base64name[j] = NX_NULL; in _nx_utility_base64_encode()
[all …]
/NetX-Duo-v6.2.1/common/inc/
Dnx_api.h4066 UINT _nx_utility_base64_encode(UCHAR *name, UINT name_size, UCHAR *base64name, UINT base64name_size…
4067 UINT _nx_utility_base64_decode(UCHAR *base64name, UINT base64name_size, UCHAR *name, UINT name_size…