Skip to content

Segfault when printing the server public key #41

Open
@graywolf

Description

@graywolf

Hello,

I found out that trying to print the public key of the server leads to a segfault:

$ guile -c '(use-modules (ssh session)) (define s (make-session #:host "terminal.shop")) (connect! s) (pk (get-server-public-key s))'

;;; ((segmentation fault

The workaround seems to be to also require (ssh key):

$ guile -c '(use-modules (ssh key) (ssh session)) (define s (make-session #:host "terminal.shop")) (connect! s) (pk (get-server-public-key s))'

;;; (#<key ed25519 (public) 7fd07cd60fc0>)

That does not seem to be documented, and, if the import is required, I believe it should happen automatically. The segfault is not great user experience.

Metadata

Metadata

Labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions