summaryrefslogtreecommitdiff
path: root/beecrypt/aes.c
diff options
context:
space:
mode:
Diffstat (limited to 'beecrypt/aes.c')
-rw-r--r--beecrypt/aes.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/beecrypt/aes.c b/beecrypt/aes.c
index ccc29bc57..837c6db64 100644
--- a/beecrypt/aes.c
+++ b/beecrypt/aes.c
@@ -762,7 +762,7 @@ int aesSetup(aesParam* ap, const byte* key, size_t keybits, cipherOperation op)
ap->fdback[2] = 0;
ap->fdback[3] = 0;
- ap->nr = 6 + ((uint32_t)keybits >> 5);
+ ap->nr = 6 + (keybits >> 5);
rk = ap->k;
@@ -846,8 +846,6 @@ int aesSetup(aesParam* ap, const byte* key, size_t keybits, cipherOperation op)
rk += 8;
}
}
- else
- {};
if (op == DECRYPT)
{
@@ -1182,6 +1180,5 @@ uint32_t* aesFeedback(aesParam* ap)
{
return ap->fdback;
}
-
/*!\}
*/