Skip to content

Commit

Permalink
Fix key_size to use the correct values
Browse files Browse the repository at this point in the history
  • Loading branch information
jgoertzen-sb committed Dec 14, 2023
1 parent b6ab591 commit 355b520
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/dnssec/dnssec-keygen.c
Original file line number Diff line number Diff line change
Expand Up @@ -588,13 +588,13 @@ keygen(keygen_ctx_t *ctx, isc_mem_t *mctx, int argc, char **argv) {
ctx->size = 456;
break;
case DST_ALG_FALCON512:
ctx->size = 1281;
ctx->size = 7176;
break;
case DST_ALG_DILITHIUM2:
ctx->size = 2528;
ctx->size = 10496;
break;
case DST_ALG_SPHINCSSHA256128S:
ctx->size = 64;
ctx->size = 256;
break;
}

Expand Down

0 comments on commit 355b520

Please sign in to comment.