Skip to content

Commit

Permalink
separate client and server key-based auth packages
Browse files Browse the repository at this point in the history
  • Loading branch information
francoismichel committed Apr 23, 2024
1 parent 21342c3 commit 86b98d5
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pubkey_authentication
package client_pubkey_authentication

import (
"bytes"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pubkey_authentication
package client_pubkey_authentication

import (
"bytes"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pubkey_authentication
package server_pubkey_authentication

import (
"crypto"
Expand Down
2 changes: 1 addition & 1 deletion cmd/plugin_endpoint/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
_ "github.com/francoismichel/ssh3/auth/plugins/pubkey_authentication"
_ "github.com/francoismichel/ssh3/auth/plugins/pubkey_authentication/client"
cmd "github.com/francoismichel/ssh3/cmd"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/ssh3-server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"

// authentication plugins
_ "github.com/francoismichel/ssh3/auth/plugins/pubkey_authentication"
_ "github.com/francoismichel/ssh3/auth/plugins/pubkey_authentication/server"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/ssh3/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"

// authentication plugins
_ "github.com/francoismichel/ssh3/auth/plugins/pubkey_authentication"
_ "github.com/francoismichel/ssh3/auth/plugins/pubkey_authentication/client"
)

func main() {
Expand Down

0 comments on commit 86b98d5

Please sign in to comment.