repositorypackage
1.0.0
Repository: https://github.com/containerssh/security.git
Documentation: pkg.go.dev
# README
ContainerSSH Security Library
This library provides a security overlay for the sshserver library.
⚠⚠⚠ Warning: This is a developer documentation. ⚠⚠⚠
The user documentation for ContainerSSH is located at containerssh.io.
Using this library
This library is intended as a tie-in to an existing module and does not implement a full SSH backend. Instead, you can use the New()
function to create a network connection handler with an appropriate backend:
security, err := security.New(
config,
backend
)
The backend
should implement the sshserver.NetworkConnectionHandler
interface from the sshserver library. For the details of the configuration structure please see config.go.