From 4e4a55c54cefbd7e9e5c0915420cba46fa657b8b Mon Sep 17 00:00:00 2001 From: Rasmus Dahlberg Date: Mon, 28 Mar 2022 18:53:18 +0200 Subject: remove dead code --- pkg/types/encoding.go | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'pkg/types/encoding.go') diff --git a/pkg/types/encoding.go b/pkg/types/encoding.go index 54a1ac6..9fd2caa 100644 --- a/pkg/types/encoding.go +++ b/pkg/types/encoding.go @@ -2,7 +2,6 @@ package types import ( "encoding/binary" - "fmt" ) // RFC4251, section 5 @@ -18,14 +17,3 @@ func putSSHString(b []byte, str string) int { return i } - -func getSSHString(b []byte) (*string, error) { - if len(b) < 4 { - return nil, fmt.Errorf("types: invalid SSH string") - } - - l := binary.BigEndian.Uint32(b[:4]) - str := string(b[4 : 4+l]) - return &str, nil - -} -- cgit v1.2.3