diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-12 16:55:59 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-12 16:55:59 +0000 |
commit | 4ea83bf562c44a6792e7c77e7d87cba91f86f763 (patch) | |
tree | 64dba9163b29724e282c1e94027001a11978e74b /libbb/correct_password.c | |
parent | 9de462205542547694299e9fe2bc321088ab79aa (diff) | |
download | busybox-w32-4ea83bf562c44a6792e7c77e7d87cba91f86f763.tar.gz busybox-w32-4ea83bf562c44a6792e7c77e7d87cba91f86f763.tar.bz2 busybox-w32-4ea83bf562c44a6792e7c77e7d87cba91f86f763.zip |
uclibc insists on having 70k static buffer for crypt.
For bbox it's not acceptable. Roll our own des and md5 crypt
implementation. Against older uclibc:
text data bss dec hex filename
759945 604 6684 767233 bb501 busybox_old
759766 604 6684 767054 bb44e busybox_unstripped
so, we still save on code size.
Diffstat (limited to 'libbb/correct_password.c')
-rw-r--r-- | libbb/correct_password.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/correct_password.c b/libbb/correct_password.c index 96bb10e0b..a4ded8b5f 100644 --- a/libbb/correct_password.c +++ b/libbb/correct_password.c | |||
@@ -71,7 +71,7 @@ int correct_password(const struct passwd *pw) | |||
71 | if (!unencrypted) { | 71 | if (!unencrypted) { |
72 | return 0; | 72 | return 0; |
73 | } | 73 | } |
74 | encrypted = crypt(unencrypted, correct); | 74 | encrypted = pw_encrypt(unencrypted, correct, 1); |
75 | memset(unencrypted, 0, strlen(unencrypted)); | 75 | memset(unencrypted, 0, strlen(unencrypted)); |
76 | return strcmp(encrypted, correct) == 0; | 76 | return strcmp(encrypted, correct) == 0; |
77 | } | 77 | } |