mirror of /home/gitosis/repositories/libowfat.git
Mirror of :pserver:cvs@cvs.fefe.de:/cvs libowfat
https://www.fefe.de/libowfat/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
627 B
24 lines
627 B
#include "fmt.h" |
|
#include "textcode.h" |
|
#include "haveinline.h" |
|
|
|
unsigned long fmt_base64(char* dest,const char* src,unsigned long len) { |
|
register const unsigned char* s=(const unsigned char*) src; |
|
unsigned short bits=0,temp=0; |
|
unsigned long written=0,i; |
|
if (!dest) return ((len+2)/3)*4; |
|
for (i=0; i<len; ++i) { |
|
temp<<=8; temp+=s[i]; bits+=8; |
|
while (bits>6) { |
|
dest[written]=base64[((temp>>(bits-6))&63)]; |
|
++written; bits-=6; |
|
} |
|
} |
|
if (bits) { |
|
temp<<=(6-bits); |
|
dest[written]=base64[temp&63]; |
|
++written; |
|
} |
|
while (written&3) { dest[written]='='; ++written; } |
|
return written; |
|
}
|
|
|