Skip to content

Commit

Permalink
fixed #198 - agent server - ed25519 key parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugeny committed Nov 15, 2023
1 parent 43bdc07 commit c66f4b0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions russh-keys/src/agent/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ impl<S: AsyncRead + AsyncWrite + Send + Unpin + 'static, A: Agent + Send + Sync
let t = r.read_string()?;
let (blob, key) = match t {
b"ssh-ed25519" => {
let _public = r.read_string()?;
let pos1 = r.position;
let concat = r.read_string()?;
let _comment = r.read_string()?;
Expand Down

0 comments on commit c66f4b0

Please sign in to comment.