Skip to content

Commit c6813d5

Browse files
committed
Fix ED25519Key KeyLength
1 parent dd3bb9c commit c6813d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Renci.SshNet/Security/Cryptography/ED25519Key.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public override int KeyLength
5151
{
5252
get
5353
{
54-
return PublicKey.Length;
54+
return PublicKey.Length * 8;
5555
}
5656
}
5757

0 commit comments

Comments
 (0)