Skip to content

Commit

Permalink
add missing space
Browse files Browse the repository at this point in the history
  • Loading branch information
muzzammilshahid committed Feb 14, 2024
1 parent d6aec07 commit 9262042
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public CompletableFuture<ChallengeResponse> onChallenge(Session session, Challen
Ed25519Signer signer = new Ed25519Signer();
signer.init(true, privateKey);
signer.update(rawChallenge, 0, rawChallenge.length);
byte[] signed =signer.generateSignature();
byte[] signed = signer.generateSignature();

String signatureHex = AuthUtil.toHexString(signed);
String res = signatureHex + hexChallenge;
Expand Down

0 comments on commit 9262042

Please sign in to comment.