aboutsummaryrefslogtreecommitdiff
path: root/lib/util.go
diff options
context:
space:
mode:
authorNiall Sheridan <nsheridan@gmail.com>2017-01-05 23:28:26 +0000
committerNiall Sheridan <nsheridan@gmail.com>2017-01-05 23:28:26 +0000
commit9e9a7d50970f1424245d88169de82988fd57e112 (patch)
tree25aca2f5e18fe3ff454af34d5d75f8c5204d81fb /lib/util.go
parent8066efd45861e7c024fc1daabc6d002266a527e7 (diff)
Move GetPublicKey to the shared `lib` package
Diffstat (limited to 'lib/util.go')
-rw-r--r--lib/util.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/util.go b/lib/util.go
new file mode 100644
index 0000000..b1c7b87
--- /dev/null
+++ b/lib/util.go
@@ -0,0 +1,10 @@
+package lib
+
+import "golang.org/x/crypto/ssh"
+
+// GetPublicKey marshals a ssh certificate to a string.
+func GetPublicKey(pub ssh.PublicKey) string {
+ marshaled := ssh.MarshalAuthorizedKey(pub)
+ // Strip trailing newline
+ return string(marshaled[:len(marshaled)-1])
+}