Searched defs:alph (Results 1 - 1 of 1) sorted by relevance

/dovecot/src/lib/
H A Dbase32.c86 base32_encode_with_alphabet(const char *alph, argument
99 tmp[0] = alph[src_c[src_pos] >> 3];
100 tmp[1] = alph[((src_c[src_pos] & 0x07) << 2) |
102 tmp[2] = alph[((src_c[src_pos+1] >> 1) & 0x1f)];
103 tmp[3] = alph[((src_c[src_pos+1] & 0x01) << 4) |
105 tmp[4] = alph[((src_c[src_pos+2] & 0x0f) << 1) |
107 tmp[5] = alph[((src_c[src_pos+3] >> 2) & 0x1f)];
108 tmp[6] = alph[((src_c[src_pos+3] & 0x03) << 3) |
110 tmp[7] = alph[src_c[src_pos+4] & 0x1f];
116 tmp[0] = alph[src_
180 base32_decode_with_alphabet(const unsigned char *alph, const void *src, size_t src_size, size_t *src_pos_r, buffer_t *dest) argument
[all...]

Completed in 6 milliseconds