From 9e9a7d50970f1424245d88169de82988fd57e112 Mon Sep 17 00:00:00 2001 From: Niall Sheridan Date: Thu, 5 Jan 2017 23:28:26 +0000 Subject: Move GetPublicKey to the shared `lib` package --- lib/proto.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 lib/proto.go (limited to 'lib/proto.go') diff --git a/lib/proto.go b/lib/proto.go new file mode 100644 index 0000000..f3d7115 --- /dev/null +++ b/lib/proto.go @@ -0,0 +1,15 @@ +package lib + +import "time" + +// SignRequest represents a signing request sent to the server. +type SignRequest struct { + Key string `json:"key"` + ValidUntil time.Time `json:"valid_until"` +} + +// SignResponse is sent by the server. +type SignResponse struct { + Status string `json:"status"` // Status will be "ok" or "error". + Response string `json:"response"` // Response will contain either the signed certificate or the error message. +} -- cgit v1.2.3