Home
last modified time | relevance | path

Searched refs:hex (Results 1 – 8 of 8) sorted by relevance

/net-tools-latest/mbedtls-2.4.0/tests/suites/
Dtest_suite_base64.data142 Base64 encode hex #1
145 Base64 encode hex #2 (buffer too small)
148 Base64 encode hex #3
151 Base64 encode hex #4
154 Base64 decode hex #1
157 Base64 decode hex #2 (buffer too small)
160 Base64 decode hex #3
163 Base64 decode hex #4
166 Base64 decode hex #5 (buffer too small)
Dmain_test.function26 int hex = 0;
39 hex = 1;
44 ( hex && ( ( str[i] >= 'a' && str[i] <= 'f' ) ||
54 if( hex )
Dtest_suite_mpi.data16 Base test mpi_read_write_string #3 (Negative hex)
43 Test mpi_read_write_string #8 (Empty MPI -> hex)
Dhelpers.function229 * Allocate and fill a buffer from hex data.
/net-tools-latest/libcoap/src/
Ddebug.c123 const unsigned char hex[] = "0123456789ABCDEF"; in print_readable() local
143 *result++ = hex[(*data & 0xf0) >> 4]; in print_readable()
144 *result++ = hex[*data & 0x0f]; in print_readable()
210 const unsigned char hex[] = "0123456789ABCDEF"; in coap_print_addr()
221 *p++ = hex[(addr->addr.u8[i] & 0xf0) >> 4]; in coap_print_addr()
222 *p++ = hex[(addr->addr.u8[i] & 0x0f)]; in coap_print_addr()
223 *p++ = hex[(addr->addr.u8[i+1] & 0xf0) >> 4]; in coap_print_addr()
224 *p++ = hex[(addr->addr.u8[i+1] & 0x0f)]; in coap_print_addr()
/net-tools-latest/tinydtls-0.8.2/
Ddebug.c169 const char hex[] = "0123456789ABCDEF"; in dsrv_print_addr()
180 *p++ = hex[(addr->addr.u8[i] & 0xf0) >> 4]; in dsrv_print_addr()
181 *p++ = hex[(addr->addr.u8[i] & 0x0f)]; in dsrv_print_addr()
182 *p++ = hex[(addr->addr.u8[i+1] & 0xf0) >> 4]; in dsrv_print_addr()
183 *p++ = hex[(addr->addr.u8[i+1] & 0x0f)]; in dsrv_print_addr()
DMakefile.in136 \*.d \*.hex \*.elf \*.map obj_\* tinydtls.h dtls_config.h \
/net-tools-latest/mbedtls-2.4.0/
DChangeLog793 * Fix mpi_write_string() to write "00" as hex output for empty MPI (found