Symbol: encode_base64
headers/os/mail/mail_encoding.h
46
ssize_t encode_base64(char *out, const char *in, off_t length, int headerMode);
src/add-ons/mail_daemon/outbound_protocols/smtp/SMTP.cpp
554
baselen = ::encode_base64(cnoncePtr, rawCnonce.String(), rawCnonce.Length(), true /* headerMode */);
src/add-ons/mail_daemon/outbound_protocols/smtp/SMTP.cpp
579
baselen = ::encode_base64(resp, rawResponse.String(), rawResponse.Length(), true /* headerMode */);
src/add-ons/mail_daemon/outbound_protocols/smtp/SMTP.cpp
622
baselen = ::encode_base64(resp, preResponse.String(), preResponse.Length(), true /* headerMode */);
src/add-ons/mail_daemon/outbound_protocols/smtp/SMTP.cpp
645
encodedsize = ::encode_base64(login64, (char *)login, loginlen, true /* headerMode */);
src/add-ons/mail_daemon/outbound_protocols/smtp/SMTP.cpp
657
encodedsize = ::encode_base64(login64, (char *)password, passlen, true /* headerMode */);
src/add-ons/mail_daemon/outbound_protocols/smtp/SMTP.cpp
683
encodedLength = ::encode_base64(stringPntr, preResponse.String(),
src/apps/cortex/Persistence/Wrappers/FlatMessageIO.cpp
122
ssize_t base64Used = encode_base64(base64Data, flatData, flatSize);
src/kits/mail/MailComponent.cpp
716
len = encode_base64(raw, alt.String(), alt.Length(), false);
src/kits/mail/mail_encoding.cpp
29
return encode_base64(out,in,length,headerMode);
src/kits/mail/mail_util.cpp
721
encoded_len = encode_base64 (encoded, convertedBuffer, convertedLength, true /* headerMode */);
src/kits/support/Base64.cpp
136
return encode_base64(out, in, length, 0);