Removed len argument from proposal_get_token()

Also use enumerators instead of lexparser.h to parse proposal strings.
This commit is contained in:
Tobias Brunner
2012-09-13 15:44:01 +02:00
parent 1962e12fd3
commit 995875210a
6 changed files with 30 additions and 32 deletions
+2 -2
View File
@@ -828,7 +828,7 @@ int main(int argc, char **argv)
if (strcaseeq("enc", type))
{
token = proposal_get_token(algo, strlen(algo));
token = proposal_get_token(algo);
if (token == NULL || token->type != ENCRYPTION_ALGORITHM)
{
usage("invalid algorithm specified");
@@ -846,7 +846,7 @@ int main(int argc, char **argv)
{
hash_algorithm_t hash;
token = proposal_get_token(algo, strlen(algo));
token = proposal_get_token(algo);
if (token == NULL || token->type != INTEGRITY_ALGORITHM)
{
usage("invalid algorithm specified");