X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/64bd756832d93c0767e72a3432fda29b30d69405..ef383c0d3295f65e555441c416f59d1f0a8588f8:/authenticate.c diff --git a/authenticate.c b/authenticate.c index 2b981195..9254fb0b 100644 --- a/authenticate.c +++ b/authenticate.c @@ -24,7 +24,7 @@ encode a buffer using base64 - simple and slow algorithm. null terminates the result. ***************************************************************************/ -static void base64_encode(char *buf, int len, char *out) +void base64_encode(char *buf, int len, char *out) { char *b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; int bit_offset, byte_offset, idx, i; @@ -33,7 +33,7 @@ static void base64_encode(char *buf, int len, char *out) memset(out, 0, bytes+1); - for (i=0;i