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.c361 UINT _nx_utility_base64_encode(UCHAR *name, UINT name_size, UCHAR *base64name, UINT base64name_size… in _nx_utility_base64_encode() argument
370 if ((name == NX_NULL) || (base64name == NX_NULL) || (bytes_copied == NX_NULL)) in _nx_utility_base64_encode()
422 base64name[j++] = (UCHAR)_nx_utility_base64_array[((UCHAR)name[i]) >> 2]; in _nx_utility_base64_encode()
431base64name[j++] = (UCHAR)_nx_utility_base64_array[((((UCHAR)name[i]) & 0x3) << 4) | (((UCHAR)name[… in _nx_utility_base64_encode()
437 base64name[j++] = (UCHAR)_nx_utility_base64_array[(((UCHAR)name[i]) & 0x3) << 4]; in _nx_utility_base64_encode()
448base64name[j++] = (UCHAR)_nx_utility_base64_array[((((UCHAR)name[i]) & 0xF) << 2) | (((UCHAR)name[… in _nx_utility_base64_encode()
454 base64name[j++] = (UCHAR)_nx_utility_base64_array[(((UCHAR)name[i]) & 0xF) << 2]; in _nx_utility_base64_encode()
463 base64name[j++] = (UCHAR)_nx_utility_base64_array[(((UCHAR)name[i]) & 0x3F)]; in _nx_utility_base64_encode()
474 base64name[j++] = '='; in _nx_utility_base64_encode()
478 base64name[j] = NX_NULL; in _nx_utility_base64_encode()
[all …]
/NetX-Duo-v6.2.1/common/inc/
Dnx_api.h3991 UINT _nx_utility_base64_encode(UCHAR *name, UINT name_size, UCHAR *base64name, UINT base64name_size…
3992 UINT _nx_utility_base64_decode(UCHAR *base64name, UINT base64name_size, UCHAR *name, UINT name_size…