aboutsummaryrefslogtreecommitdiff
path: root/pkg/types/encoding.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/types/encoding.go')
-rw-r--r--pkg/types/encoding.go12
1 files changed, 0 insertions, 12 deletions
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
-
-}