diff options
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/Kbuild.src | 10 | ||||
-rw-r--r-- | libbb/hash_sha1_hwaccel_x86-32.S (renamed from libbb/hash_md5_sha_x86-32_shaNI.S) | 0 | ||||
-rw-r--r-- | libbb/hash_sha1_hwaccel_x86-64.S (renamed from libbb/hash_md5_sha_x86-64_shaNI.S) | 0 | ||||
-rw-r--r-- | libbb/hash_sha1_x86-64.S (renamed from libbb/hash_md5_sha_x86-64.S) | 2 | ||||
-rwxr-xr-x | libbb/hash_sha1_x86-64.S.sh (renamed from libbb/hash_md5_sha_x86-64.S.sh) | 4 | ||||
-rw-r--r-- | libbb/hash_sha256_hwaccel_x86-32.S (renamed from libbb/hash_md5_sha256_x86-32_shaNI.S) | 0 | ||||
-rw-r--r-- | libbb/hash_sha256_hwaccel_x86-64.S (renamed from libbb/hash_md5_sha256_x86-64_shaNI.S) | 0 |
7 files changed, 8 insertions, 8 deletions
diff --git a/libbb/Kbuild.src b/libbb/Kbuild.src index d6394fe27..80fe8fef0 100644 --- a/libbb/Kbuild.src +++ b/libbb/Kbuild.src | |||
@@ -45,11 +45,11 @@ lib-y += lineedit.o lineedit_ptr_hack.o | |||
45 | lib-y += llist.o | 45 | lib-y += llist.o |
46 | lib-y += make_directory.o | 46 | lib-y += make_directory.o |
47 | lib-y += hash_md5_sha.o | 47 | lib-y += hash_md5_sha.o |
48 | lib-y += hash_md5_sha_x86-64.o | 48 | lib-y += hash_sha1_x86-64.o |
49 | lib-y += hash_md5_sha_x86-64_shaNI.o | 49 | lib-y += hash_sha1_hwaccel_x86-64.o |
50 | lib-y += hash_md5_sha_x86-32_shaNI.o | 50 | lib-y += hash_sha1_hwaccel_x86-32.o |
51 | lib-y += hash_md5_sha256_x86-64_shaNI.o | 51 | lib-y += hash_sha256_hwaccel_x86-64.o |
52 | lib-y += hash_md5_sha256_x86-32_shaNI.o | 52 | lib-y += hash_sha256_hwaccel_x86-32.o |
53 | # Alternative (disabled) MD5 implementation | 53 | # Alternative (disabled) MD5 implementation |
54 | #lib-y += hash_md5prime.o | 54 | #lib-y += hash_md5prime.o |
55 | lib-y += messages.o | 55 | lib-y += messages.o |
diff --git a/libbb/hash_md5_sha_x86-32_shaNI.S b/libbb/hash_sha1_hwaccel_x86-32.S index 7455a29f0..7455a29f0 100644 --- a/libbb/hash_md5_sha_x86-32_shaNI.S +++ b/libbb/hash_sha1_hwaccel_x86-32.S | |||
diff --git a/libbb/hash_md5_sha_x86-64_shaNI.S b/libbb/hash_sha1_hwaccel_x86-64.S index 2f03e1ce4..2f03e1ce4 100644 --- a/libbb/hash_md5_sha_x86-64_shaNI.S +++ b/libbb/hash_sha1_hwaccel_x86-64.S | |||
diff --git a/libbb/hash_md5_sha_x86-64.S b/libbb/hash_sha1_x86-64.S index 2cdd22015..b1968fff6 100644 --- a/libbb/hash_md5_sha_x86-64.S +++ b/libbb/hash_sha1_x86-64.S | |||
@@ -1,4 +1,4 @@ | |||
1 | ### Generated by hash_md5_sha_x86-64.S.sh ### | 1 | ### Generated by hash_sha1_x86-64.S.sh ### |
2 | 2 | ||
3 | #if CONFIG_SHA1_SMALL == 0 && defined(__GNUC__) && defined(__x86_64__) | 3 | #if CONFIG_SHA1_SMALL == 0 && defined(__GNUC__) && defined(__x86_64__) |
4 | #ifdef __linux__ | 4 | #ifdef __linux__ |
diff --git a/libbb/hash_md5_sha_x86-64.S.sh b/libbb/hash_sha1_x86-64.S.sh index 653fe4989..3fc125d51 100755 --- a/libbb/hash_md5_sha_x86-64.S.sh +++ b/libbb/hash_sha1_x86-64.S.sh | |||
@@ -4,7 +4,7 @@ | |||
4 | # The reason is that the changes to generated code are difficult | 4 | # The reason is that the changes to generated code are difficult |
5 | # to visualize by looking only at this script, it helps when the commit | 5 | # to visualize by looking only at this script, it helps when the commit |
6 | # also contains the diff of the generated file. | 6 | # also contains the diff of the generated file. |
7 | exec >hash_md5_sha_x86-64.S | 7 | exec >hash_sha1_x86-64.S |
8 | 8 | ||
9 | # Based on http://arctic.org/~dean/crypto/sha1.html. | 9 | # Based on http://arctic.org/~dean/crypto/sha1.html. |
10 | # ("This SHA1 implementation is public domain.") | 10 | # ("This SHA1 implementation is public domain.") |
@@ -124,7 +124,7 @@ INTERLEAVE() { | |||
124 | # ...but pshufb is a SSSE3 insn. Can't use it. | 124 | # ...but pshufb is a SSSE3 insn. Can't use it. |
125 | 125 | ||
126 | echo \ | 126 | echo \ |
127 | "### Generated by hash_md5_sha_x86-64.S.sh ### | 127 | "### Generated by hash_sha1_x86-64.S.sh ### |
128 | 128 | ||
129 | #if CONFIG_SHA1_SMALL == 0 && defined(__GNUC__) && defined(__x86_64__) | 129 | #if CONFIG_SHA1_SMALL == 0 && defined(__GNUC__) && defined(__x86_64__) |
130 | #ifdef __linux__ | 130 | #ifdef __linux__ |
diff --git a/libbb/hash_md5_sha256_x86-32_shaNI.S b/libbb/hash_sha256_hwaccel_x86-32.S index a0e4a571a..a0e4a571a 100644 --- a/libbb/hash_md5_sha256_x86-32_shaNI.S +++ b/libbb/hash_sha256_hwaccel_x86-32.S | |||
diff --git a/libbb/hash_md5_sha256_x86-64_shaNI.S b/libbb/hash_sha256_hwaccel_x86-64.S index 172c2eae2..172c2eae2 100644 --- a/libbb/hash_md5_sha256_x86-64_shaNI.S +++ b/libbb/hash_sha256_hwaccel_x86-64.S | |||