fixed fatal typo
This commit is contained in:
@@ -163,7 +163,7 @@ serpent_crypter_t *serpent_crypter_create(encryption_algorithm_t algo, size_t ke
|
|||||||
private_serpent_crypter_t *this;
|
private_serpent_crypter_t *this;
|
||||||
|
|
||||||
if (algo != ENCR_SERPENT_CBC ||
|
if (algo != ENCR_SERPENT_CBC ||
|
||||||
!(key_size == 16 || key_size = 24 || key_size == 32))
|
!(key_size == 16 || key_size == 24 || key_size == 32))
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -163,7 +163,7 @@ twofish_crypter_t *twofish_crypter_create(encryption_algorithm_t algo, size_t ke
|
|||||||
private_twofish_crypter_t *this;
|
private_twofish_crypter_t *this;
|
||||||
|
|
||||||
if (algo != ENCR_TWOFISH_CBC ||
|
if (algo != ENCR_TWOFISH_CBC ||
|
||||||
!(key_size == 16 || key_size = 24 || key_size == 32))
|
!(key_size == 16 || key_size == 24 || key_size == 32))
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user