Searched refs:wordlength (Results 1 - 8 of 8) sorted by relevance
/bind-9.11.3/lib/isc/include/isc/ |
H A D | base64.h | 26 isc_base64_totext(isc_region_t *source, int wordlength, 33 * words of at most 'wordlength' characters, separated by
|
H A D | hex.h | 26 isc_hex_totext(isc_region_t *source, int wordlength, 33 * words of at most 'wordlength' characters, separated by
|
H A D | base32.h | 34 isc_base32_totext(isc_region_t *source, int wordlength, 37 isc_base32hex_totext(isc_region_t *source, int wordlength, 40 isc_base32hexnp_totext(isc_region_t *source, int wordlength, 47 * words of at most 'wordlength' characters, separated by
|
/bind-9.11.3/lib/isccc/include/isccc/ |
H A D | base64.h | 40 isccc_base64_encode(isccc_region_t *source, int wordlength, 47 * words of at most 'wordlength' characters, separated by
|
/bind-9.11.3/lib/isccc/ |
H A D | base64.c | 39 isccc_base64_encode(isccc_region_t *source, int wordlength, argument 51 result = isc_base64_totext(&sr, wordlength, wordbreak, &tb);
|
/bind-9.11.3/lib/isc/ |
H A D | base32.c | 48 base32_totext(isc_region_t *source, int wordlength, const char *wordbreak, argument 54 if (wordlength >= 0 && wordlength < 8) 55 wordlength = 8; 100 if (source->length != 0 && wordlength >= 0 && 101 (int)((loops + 1) * 8) >= wordlength) 113 isc_base32_totext(isc_region_t *source, int wordlength, argument 116 return (base32_totext(source, wordlength, wordbreak, target, 121 isc_base32hex_totext(isc_region_t *source, int wordlength, argument 124 return (base32_totext(source, wordlength, wordbrea 129 isc_base32hexnp_totext(isc_region_t *source, int wordlength, const char *wordbreak, isc_buffer_t *target) argument [all...] |
H A D | hex.c | 42 isc_hex_totext(isc_region_t *source, int wordlength, argument 48 if (wordlength < 2) 49 wordlength = 2; 60 (int)((loops + 1) * 2) >= wordlength)
|
H A D | base64.c | 44 isc_base64_totext(isc_region_t *source, int wordlength, argument 50 if (wordlength < 4) 51 wordlength = 4; 66 (int)((loops + 1) * 4) >= wordlength)
|
Completed in 42 milliseconds