diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-03 15:49:40 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-03 15:49:40 +0000 |
commit | 21afc7dc291f1cb11feec7a9766bf3542545f581 (patch) | |
tree | 5cf8056965bf44d78ef9937fe1f529fa2915e772 /libbb | |
parent | 22dca23d52c836e40c79cb4042b867fdc06f6ca3 (diff) | |
download | busybox-w32-21afc7dc291f1cb11feec7a9766bf3542545f581.tar.gz busybox-w32-21afc7dc291f1cb11feec7a9766bf3542545f581.tar.bz2 busybox-w32-21afc7dc291f1cb11feec7a9766bf3542545f581.zip |
uuencode: common implementation for wget and uuencode (closing bug 694)
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/Makefile.in | 2 | ||||
-rw-r--r-- | libbb/uuencode.c | 63 |
2 files changed, 65 insertions, 0 deletions
diff --git a/libbb/Makefile.in b/libbb/Makefile.in index f94c100a9..0f2328072 100644 --- a/libbb/Makefile.in +++ b/libbb/Makefile.in | |||
@@ -48,6 +48,8 @@ LIBBB-$(CONFIG_SU)+= correct_password.c | |||
48 | LIBBB-$(CONFIG_LOGIN)+= correct_password.c | 48 | LIBBB-$(CONFIG_LOGIN)+= correct_password.c |
49 | LIBBB-$(CONFIG_DF)+= find_mount_point.c | 49 | LIBBB-$(CONFIG_DF)+= find_mount_point.c |
50 | LIBBB-$(CONFIG_EJECT)+= find_mount_point.c | 50 | LIBBB-$(CONFIG_EJECT)+= find_mount_point.c |
51 | LIBBB-$(CONFIG_UUENCODE)+= uuencode.c | ||
52 | LIBBB-$(CONFIG_WGET)+= uuencode.c | ||
51 | 53 | ||
52 | # We shouldn't build xregcomp.c if we don't need it - this ensures we don't | 54 | # We shouldn't build xregcomp.c if we don't need it - this ensures we don't |
53 | # require regex.h to be in the include dir even if we don't need it thereby | 55 | # require regex.h to be in the include dir even if we don't need it thereby |
diff --git a/libbb/uuencode.c b/libbb/uuencode.c new file mode 100644 index 000000000..38401205b --- /dev/null +++ b/libbb/uuencode.c | |||
@@ -0,0 +1,63 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | ||
2 | /* | ||
3 | * Copyright 2006 Rob Landley <rob@landley.net> | ||
4 | * | ||
5 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | ||
6 | */ | ||
7 | |||
8 | #include "libbb.h" | ||
9 | |||
10 | /* Conversion table. for base 64 */ | ||
11 | const char bb_uuenc_tbl_base64[65] = { | ||
12 | 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', | ||
13 | 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', | ||
14 | 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', | ||
15 | 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', | ||
16 | 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', | ||
17 | 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', | ||
18 | 'w', 'x', 'y', 'z', '0', '1', '2', '3', | ||
19 | '4', '5', '6', '7', '8', '9', '+', '/', | ||
20 | '=' /* termination character */ | ||
21 | }; | ||
22 | |||
23 | const char bb_uuenc_tbl_std[65] = { | ||
24 | '`', '!', '"', '#', '$', '%', '&', '\'', | ||
25 | '(', ')', '*', '+', ',', '-', '.', '/', | ||
26 | '0', '1', '2', '3', '4', '5', '6', '7', | ||
27 | '8', '9', ':', ';', '<', '=', '>', '?', | ||
28 | '@', 'A', 'B', 'C', 'D', 'E', 'F', 'G', | ||
29 | 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', | ||
30 | 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', | ||
31 | 'X', 'Y', 'Z', '[', '\\', ']', '^', '_', | ||
32 | '`' /* termination character */ | ||
33 | }; | ||
34 | |||
35 | /* | ||
36 | * Encode the string S of length LENGTH to base64 format and place it | ||
37 | * to STORE. STORE will be 0-terminated, and must point to a writable | ||
38 | * buffer of at least 1+BASE64_LENGTH(length) bytes. | ||
39 | * where BASE64_LENGTH(len) = (4 * ((LENGTH + 2) / 3)) | ||
40 | */ | ||
41 | void bb_uuencode(const unsigned char *s, char *store, const int length, const char *tbl) | ||
42 | { | ||
43 | int i; | ||
44 | char *p = store; | ||
45 | |||
46 | /* Transform the 3x8 bits to 4x6 bits, as required by base64. */ | ||
47 | for (i = 0; i < length; i += 3) { | ||
48 | *p++ = tbl[s[0] >> 2]; | ||
49 | *p++ = tbl[((s[0] & 3) << 4) + (s[1] >> 4)]; | ||
50 | *p++ = tbl[((s[1] & 0xf) << 2) + (s[2] >> 6)]; | ||
51 | *p++ = tbl[s[2] & 0x3f]; | ||
52 | s += 3; | ||
53 | } | ||
54 | /* Pad the result if necessary... */ | ||
55 | if (i == length + 1) { | ||
56 | *(p - 1) = tbl[64]; | ||
57 | } | ||
58 | else if (i == length + 2) { | ||
59 | *(p - 1) = *(p - 2) = tbl[64]; | ||
60 | } | ||
61 | /* ...and zero-terminate it. */ | ||
62 | *p = '\0'; | ||
63 | } | ||