1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-03 12:21:07 +00:00

The hc_bytealign_be_S() was merged too early, but is not yet used anywhere for this platform so we can remove it again.

This commit is contained in:
Jens Steube 2021-08-12 15:15:32 +02:00
parent b386ab1c27
commit 1f22984313
2 changed files with 1 additions and 9 deletions

View File

@ -1711,15 +1711,6 @@ DECLSPEC u32 hc_bfe_S (const u32 a, const u32 b, const u32 c)
return r; return r;
} }
DECLSPEC u32 hc_bytealign_be_S (const u32 a, const u32 b, const int c)
{
const int c_mod_4 = c & 3;
const u32 r = hc_byte_perm_S (b, a, (0x76543210 >> (c_mod_4 * 4)) & 0xffff);
return r;
}
DECLSPEC u32x hc_bytealign (const u32x a, const u32x b, const int c) DECLSPEC u32x hc_bytealign (const u32x a, const u32x b, const int c)
{ {
const int c_mod_4 = c & 3; const int c_mod_4 = c & 3;

View File

@ -144,3 +144,4 @@ but this is nededed for VS compiler which doesn't have inline keyword but has __
#endif #endif
#endif // _COMMON_H #endif // _COMMON_H