Skip to content

Commit

Permalink
removed a bug where keys were too long
Browse files Browse the repository at this point in the history
  • Loading branch information
jgoertzen-sb committed Dec 13, 2023
1 parent 808ae84 commit 64b6fd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/dns/openssloqs_link.c
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ openssloqs_fromdns(dst_key_t *key, isc_buffer_t *data) {

isc_buffer_forward(data, len);
key->keydata.pkeypair.pub = pkey;
key->key_size = len * 8;
key->key_size = len;
return (ISC_R_SUCCESS);
}

Expand Down

0 comments on commit 64b6fd7

Please sign in to comment.