diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-05 08:50:33 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-05 08:50:33 +0200 |
| commit | 5d1b9f1062d38c301c0995ec6da980bdf5e48332 (patch) | |
| tree | 81e1a8963ea66cf06164e89beb6cd2da0ee325f7 /internal/ssh/server | |
| parent | bb46cfbccea301721fb93485ea7169f5841feda3 (diff) | |
Improve lint/vet reliability and refactor client runtime/bootstrap
Diffstat (limited to 'internal/ssh/server')
| -rw-r--r-- | internal/ssh/server/authkeystore.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/ssh/server/authkeystore.go b/internal/ssh/server/authkeystore.go index c4b89fe..c96b207 100644 --- a/internal/ssh/server/authkeystore.go +++ b/internal/ssh/server/authkeystore.go @@ -28,8 +28,8 @@ type AuthKeyStore struct { now func() time.Time } -// ServerAuthKeyStore returns the process-wide auth key cache used by the SSH server. -func ServerAuthKeyStore() *AuthKeyStore { +// AuthKeys returns the process-wide auth key cache used by the SSH server. +func AuthKeys() *AuthKeyStore { return authKeyStore } |
