fix default case warnings, add to warning list

This commit is contained in:
Todd A Ouska
2011-06-09 17:11:20 -07:00
parent 5e1c1b8b99
commit 3013a84bd1
4 changed files with 26 additions and 2 deletions

View File

@@ -922,6 +922,9 @@ int AesSetKey(Aes* aes, const byte* userKey, word32 keylen, const byte* iv,
rk += 8;
}
break;
default:
return BAD_FUNC_ARG;
}
if (dir == AES_DECRYPTION)