diff --git a/auth.go b/auth.go index f32742d..f183952 100644 --- a/auth.go +++ b/auth.go @@ -52,7 +52,6 @@ func PlainAuth(identity, username, password, host string) Auth { return &plainAuth{identity, username, password, host} } - func (a *plainAuth) Start(server *ServerInfo) (string, []byte, error) { // Must have TLS, or else localhost server. Unencrypted connection is permitted here too but is not recommended // Note: If TLS is not true, then we can't trust ANYTHING in ServerInfo. @@ -72,4 +71,4 @@ func (a *plainAuth) Next(fromServer []byte, more bool) ([]byte, error) { return nil, errors.New("unexpected server challenge") } return nil, nil -} \ No newline at end of file +}