mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-22 08:08:10 +00:00
Merge pull request #3459 from ventaquil/bugfix/luks-improper-string-comparision
Fix improper strings comparision in LUKS modules
This commit is contained in:
commit
046637d34c
@ -217,24 +217,25 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
|
||||
// cipher mode
|
||||
|
||||
const u8 *cipher_mode_pos = token.buf[1];
|
||||
const u32 cipher_mode_len = token.len[1];
|
||||
|
||||
if (strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0)
|
||||
if ((strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0) && (cipher_mode_len == 16))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_ESSIV_SHA256;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN64;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN64;
|
||||
}
|
||||
|
@ -217,24 +217,25 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
|
||||
// cipher mode
|
||||
|
||||
const u8 *cipher_mode_pos = token.buf[1];
|
||||
const u32 cipher_mode_len = token.len[1];
|
||||
|
||||
if (strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0)
|
||||
if ((strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0) && (cipher_mode_len == 16))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_ESSIV_SHA256;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN64;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN64;
|
||||
}
|
||||
|
@ -217,24 +217,25 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
|
||||
// cipher mode
|
||||
|
||||
const u8 *cipher_mode_pos = token.buf[1];
|
||||
const u32 cipher_mode_len = token.len[1];
|
||||
|
||||
if (strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0)
|
||||
if ((strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0) && (cipher_mode_len == 16))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_ESSIV_SHA256;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN64;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN64;
|
||||
}
|
||||
|
@ -217,24 +217,25 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
|
||||
// cipher mode
|
||||
|
||||
const u8 *cipher_mode_pos = token.buf[1];
|
||||
const u32 cipher_mode_len = token.len[1];
|
||||
|
||||
if (strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0)
|
||||
if ((strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0) && (cipher_mode_len == 16))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_ESSIV_SHA256;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN64;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN64;
|
||||
}
|
||||
|
@ -217,24 +217,25 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
|
||||
// cipher mode
|
||||
|
||||
const u8 *cipher_mode_pos = token.buf[1];
|
||||
const u32 cipher_mode_len = token.len[1];
|
||||
|
||||
if (strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0)
|
||||
if ((strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0) && (cipher_mode_len == 16))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_ESSIV_SHA256;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN64;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN64;
|
||||
}
|
||||
|
@ -217,24 +217,25 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
|
||||
// cipher mode
|
||||
|
||||
const u8 *cipher_mode_pos = token.buf[1];
|
||||
const u32 cipher_mode_len = token.len[1];
|
||||
|
||||
if (strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0)
|
||||
if ((strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0) && (cipher_mode_len == 16))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_ESSIV_SHA256;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN64;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN64;
|
||||
}
|
||||
|
@ -217,24 +217,25 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
|
||||
// cipher mode
|
||||
|
||||
const u8 *cipher_mode_pos = token.buf[1];
|
||||
const u32 cipher_mode_len = token.len[1];
|
||||
|
||||
if (strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0)
|
||||
if ((strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0) && (cipher_mode_len == 16))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_ESSIV_SHA256;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN64;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN64;
|
||||
}
|
||||
|
@ -217,24 +217,25 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
|
||||
// cipher mode
|
||||
|
||||
const u8 *cipher_mode_pos = token.buf[1];
|
||||
const u32 cipher_mode_len = token.len[1];
|
||||
|
||||
if (strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0)
|
||||
if ((strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0) && (cipher_mode_len == 16))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_ESSIV_SHA256;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN64;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN64;
|
||||
}
|
||||
|
@ -217,24 +217,25 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
|
||||
// cipher mode
|
||||
|
||||
const u8 *cipher_mode_pos = token.buf[1];
|
||||
const u32 cipher_mode_len = token.len[1];
|
||||
|
||||
if (strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0)
|
||||
if ((strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0) && (cipher_mode_len == 16))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_ESSIV_SHA256;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN64;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN64;
|
||||
}
|
||||
|
@ -217,24 +217,25 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
|
||||
// cipher mode
|
||||
|
||||
const u8 *cipher_mode_pos = token.buf[1];
|
||||
const u32 cipher_mode_len = token.len[1];
|
||||
|
||||
if (strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0)
|
||||
if ((strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0) && (cipher_mode_len == 16))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_ESSIV_SHA256;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN64;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN64;
|
||||
}
|
||||
|
@ -217,24 +217,25 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
|
||||
// cipher mode
|
||||
|
||||
const u8 *cipher_mode_pos = token.buf[1];
|
||||
const u32 cipher_mode_len = token.len[1];
|
||||
|
||||
if (strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0)
|
||||
if ((strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0) && (cipher_mode_len == 16))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_ESSIV_SHA256;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN64;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN64;
|
||||
}
|
||||
|
@ -217,24 +217,25 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
|
||||
// cipher mode
|
||||
|
||||
const u8 *cipher_mode_pos = token.buf[1];
|
||||
const u32 cipher_mode_len = token.len[1];
|
||||
|
||||
if (strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0)
|
||||
if ((strncmp ((const char *) cipher_mode_pos, "cbc-essiv:sha256", 16) == 0) && (cipher_mode_len == 16))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_ESSIV_SHA256;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "cbc-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_CBC_PLAIN64;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain", 9) == 0) && (cipher_mode_len == 9))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN;
|
||||
}
|
||||
else if (strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0)
|
||||
else if ((strncmp ((const char *) cipher_mode_pos, "xts-plain64", 11) == 0) && (cipher_mode_len == 11))
|
||||
{
|
||||
luks->cipher_mode = HC_LUKS_CIPHER_MODE_XTS_PLAIN64;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user