aboutsummaryrefslogtreecommitdiff
path: root/Rules.mak (unfollow)
Commit message (Collapse)AuthorFilesLines
2025-07-21libbb: change define names in SHA-NI code to match kernel source more closelyDenys Vlasenko2-166/+166
No code changes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2025-07-20libbb/yescrypt: de-unroll salsa20()Denys Vlasenko2-23/+76
function old new delta salsa20 760 296 -464 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2025-07-19libbb: crypt_make_pw_salt(): fix yescrypt's random salt last charDenys Vlasenko2-4/+12
function old new delta crypt_make_pw_salt 128 146 +18 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2025-07-19cryptpw: fix detection of crypt algo from salt (was broken if default isn't DES)Denys Vlasenko2-11/+34
The symptom is: "cryptpw ... implicit" testsuite tests were failing if CONFIG_FEATURE_DEFAULT_PASSWD_ALGO is not "des". function old new delta cryptpw_main 223 283 +60 pw_encrypt 974 975 +1 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 2/0 up/down: 61/0) Total: 61 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2025-07-19libbb/yescrypt: code shrinkDenys Vlasenko1-28/+25
function old new delta blockmix_xor_save 1169 708 -461 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2025-07-19bootchartd: check the result of opendir("/proc")Denys Vlasenko1-1/+1
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2025-07-18tftp: use bb_error_msg instead of info_msg for a debug messageDenys Vlasenko1-1/+1
This is the only use of bb_info_msg in tftp. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2025-07-18ntpd: replace two bb_info_msg's with bb_error_msgDenys Vlasenko1-2/+2
All other messages are printed via bb_error_msg in this applet. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2025-07-18sulogin: set ^C to SIG_DFL before execing the shellDenys Vlasenko1-3/+6
function old new delta sulogin_main 331 340 +9 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2025-07-18password applets: update help textDenys Vlasenko2-4/+4
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2025-07-17libbb.h: increase MAX_PW_SALT_LENDenys Vlasenko2-8/+7
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2025-07-17libbb/yescrypt: actually, largest allowed salt is 86 chars, support thatDenys Vlasenko3-15/+23
function old new delta yescrypt_r 767 756 -11 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2025-07-15libbb/yescrypt: code shrinkDenys Vlasenko1-15/+8
function old new delta blockmix_xor 1177 702 -475 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>