aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* tls: P256: trivial x86-64 fixDenys Vlasenko2021-11-271-1/+1
* tls: P256: change logic so that we don't need double-wide vectors everywhereDenys Vlasenko2021-11-271-106/+72
* tls: P256: do not open-code copying of struct variablesDenys Vlasenko2021-11-271-1/+3
* tls: P256: fix sp_256_div2_8 - it wouldn't use a[] if low bit is 0Denys Vlasenko2021-11-271-5/+7
* tls: P256: remove redundant zeroing in sp_256_map_8Denys Vlasenko2021-11-271-2/+0
* tls: P256: explain which functions use double-wide arrays, no code changesDenys Vlasenko2021-11-271-153/+58
* tls: P256: remove constant-time trick in sp_256_proj_point_add_8Denys Vlasenko2021-11-271-42/+37
* tls: P256: do not open-code copying of struct variablesDenys Vlasenko2021-11-271-2/+2
* tls: tweak debug printoutDenys Vlasenko2021-11-271-1/+2
* tls: P256: 64-bit optimizationsDenys Vlasenko2021-11-272-15/+101
* which: add -a to help textDenys Vlasenko2021-11-091-2/+3
* cpio: add support for --renumber-inodes like GNU cpioAriadne Conill2021-10-131-0/+32
* cpio: add support for --ignore-devno like GNU cpioAriadne Conill2021-10-131-0/+20
* shell: tweak --helpDenys Vlasenko2021-10-132-2/+2
* hush: in a comment, document what -i might be doingDenys Vlasenko2021-10-132-6/+28
* ed: align output of read/write commands with POSIX-1.2008Sören Tempel2021-10-121-14/+18
* config system: move some options closer to relevalnt tool subdirectoriesDenys Vlasenko2021-10-126-131/+132
* shell: use more compact SHELL_ASH / HUSH config defines. no code changesDenys Vlasenko2021-10-122-11/+3
* shell: do not read user database for every prompt - only for those which need itDenys Vlasenko2021-10-111-27/+46
* tar: prevent malicious archives with enormous long name sizes OOMing the machineDenys Vlasenko2021-10-111-3/+8
* whitespace fixDenys Vlasenko2021-10-111-1/+0
* shell: fix script's comm field if ENABLE_FEATURE_PREFER_APPLETS=yDenys Vlasenko2021-10-117-2/+78
* tls: code shrink curve25519Denys Vlasenko2021-10-111-15/+39
* tls: remove unused tls_symmetric.h (was used by old "big" AES code)Denys Vlasenko2021-10-112-512/+0
* chrt: silence analyzer warningBernhard Reutner-Fischer2021-10-101-1/+1
* find: code shrink -{m,a,c}{time,min}Denys Vlasenko2021-10-101-28/+33
* *: add more beneficial NOINLINEsDenys Vlasenko2021-10-103-3/+3
* *: add NOINLINEs where code noticeably shrinksDenys Vlasenko2021-10-108-8/+8
* Make const ptr assign as function call in clangYU Jincheng2021-10-097-12/+38
* find: implement -amin, -atime, -cmin, and -ctimeIsmael Luceno2021-10-091-9/+103
* hush: speed up ${x//\*/|} tooDenys Vlasenko2021-10-091-4/+9
* ash: speed up ${x//\*/|} too, make it independent of ASH_OPTIMIZE_FOR_SIZEDenys Vlasenko2021-10-091-6/+12
* ash.c: speedup ${s:} substring (no quotes)Alin Mr2021-10-091-6/+11
* libbb: better coreutils compatibility for realpathRon Yorston2021-10-093-31/+91
* xxd: fix -p -r, closes 13881Denys Vlasenko2021-10-082-13/+44
* resize: use tcgetattr(TCSAFLUSH) instead of TCSANOW, closes 13811Denys Vlasenko2021-10-081-1/+13
* mktemp: add --tmpdir optionAndrej Valek2021-10-081-1/+15
* tar: improve comments, add FIXMEs. no code changesDenys Vlasenko2021-10-081-2/+3
* libbb.h: fix logic selecting incorrect BB_STRTOOFF for !LFS configsDenys Vlasenko2021-10-081-3/+7
* httpd: if range is not specified, correctly fall back to read/write loopDenys Vlasenko2021-10-081-2/+5
* help: s/Don't daemonize/Run in foreground/gDenys Vlasenko2021-10-083-3/+3
* mdev: tweak --helpDenys Vlasenko2021-10-081-5/+5
* mount: "mount -o rw ...." should not fall back to RO mountDenys Vlasenko2021-10-081-8/+13
* ip: added support for setting netns on devicesNicholas Niro2021-10-072-3/+34
* ps: fix -o pid=PID,args interpreting entire "PID,args" as headerDenys Vlasenko2021-10-071-14/+18
* find: Unify time comparisonsIsmael Luceno2021-10-071-16/+20
* config: find: Fix mtime/mmin descriptionIsmael Luceno2021-10-071-2/+2
* *: generalize "const trick"YU Jincheng2021-10-076-38/+34
* tls: whitespace fixDenys Vlasenko2021-10-061-3/+3
* tls: P256: sp_256_sub_8_p256_mod always subtracts in-place, use thatDenys Vlasenko2021-10-061-63/+36