ssh3

(β˜… 5,010)

SSH3: faster and rich secure shell using HTTP/3, checkout our article here: https://arxiv.org/abs/2312.08396 and our Internet-Draft: https://datatracker.ietf.org/doc/draft-michel-ssh3/

  • .gitignore
  • .goreleaser-client-only-windows.yml
  • .goreleaser-linux-amd64.yml
  • .goreleaser-linux-arm64.yml
  • .goreleaser-unix.yml
  • channel.go
  • client_auth.go
  • conversation.go
  • generate_openssl_selfsigned_certificate.sh
  • go.mod
  • go.sum
  • known_hosts.go
  • LICENSE
  • Makefile
  • README.md
  • resources_manager.go
  • SECURITY.md
  • server.go
  • ssh3_suite_test.go
  • version.go

# Installation Guide

1. Get the code
git clone https://github.com/francoismichel/ssh3

Downloads the entire project code from GitHub to your computer.

cd ssh3

Moves into the project folder you just downloaded.

2. Official Install Script

Easy Recommended
Prerequisites
  • Go Go is required to use go install.
go install github.com/francoismichel/ssh3/cmd/...@latest

Downloads and installs the specified version directly β€” no need to clone the repo yourself.

βœ… After installing, open a new terminal and run the program's version command (e.g. --version) to confirm it worked.

Pulled directly from this repo's README.

3. Go

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Go The Go compiler and toolchain.
go install github.com/francoismichel/ssh3/cmd/...@latest

Downloads and installs the specified version directly β€” no need to clone the repo yourself.

go build -o ssh3 cmd/ssh3/main.go # build the client

Compiles the Go program into an executable.

CGO_ENABLED=1 go build -o ssh3-server cmd/ssh3-server/main.go # build the server, requires having gcc installed

Compiles the Go program into an executable.

βœ… If the build finishes without errors, it worked. If you used go run ., check the terminal output.

Pulled directly from this repo's README.

4. Make

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make

Compiles the code based on the generated build configuration to produce an executable.

βœ… If it finishes without errors, it worked. Try running the generated executable directly.
// repository documentation