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

/dovecot/src/pop3-login/
H A Dclient-authenticate.c4 #include "base64.h"
139 string_t *plain_login, *base64; local
161 base64 = t_buffer_create(MAX_BASE64_ENCODED_SIZE(plain_login->used));
162 base64_encode(plain_login->data, plain_login->used, base64);
164 (void)client_auth_begin(client, "PLAIN", str_c(base64));
171 buffer_t *apop_data, *base64; local
210 base64 = t_buffer_create(MAX_BASE64_ENCODED_SIZE(apop_data->used));
211 base64_encode(apop_data->data, apop_data->used, base64);
224 (void)client_auth_begin(client, "APOP", str_c(base64));
/dovecot/src/imap-login/
H A Dclient-authenticate.c4 #include "base64.h"
188 string_t *plain_login, *base64; local
209 base64 = t_buffer_create(MAX_BASE64_ENCODED_SIZE(plain_login->used));
210 base64_encode(plain_login->data, plain_login->used, base64);
211 return imap_client_auth_begin(imap_client, "PLAIN", str_c(base64));
/dovecot/src/lib-fs/
H A Dfs-dict.c8 #include "base64.h"
65 else if (strcmp(encoding_str, "base64") == 0)
235 string_t *base64 = t_str_new(base64_size); local
237 file->write_buffer->used, base64);
238 dict_set(trans, file->key, str_c(base64));

Completed in 2053 milliseconds