Home
last modified time | relevance | path

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

/mbedtls-3.4.0/tests/src/
Dhelpers.c51 static int ascii2uc(const char c, unsigned char *uc) in ascii2uc() argument
54 *uc = c - '0'; in ascii2uc()
56 *uc = c - 'a' + 10; in ascii2uc()
58 *uc = c - 'A' + 10; in ascii2uc()
196 unsigned char uc, uc2; in mbedtls_test_unhexify() local
210 if ( ascii2uc( *(ibuf++), &uc ) != 0 ) in mbedtls_test_unhexify()
216 *(obuf++) = ( uc << 4 ) | uc2; in mbedtls_test_unhexify()