From 884013090b1b56b207f644393865c6057c9999ca Mon Sep 17 00:00:00 2001 From: Niall Sheridan Date: Mon, 18 Apr 2016 22:11:39 +0100 Subject: Initial commit --- lib/const.go | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lib/const.go (limited to 'lib') diff --git a/lib/const.go b/lib/const.go new file mode 100644 index 0000000..fd771a0 --- /dev/null +++ b/lib/const.go @@ -0,0 +1,18 @@ +package lib + +import "time" + +// SignRequest represents a signing request sent to the server. +type SignRequest struct { + Key string `json:"key"` + Principal string `json:"principal"` + ValidUntil time.Time `json:"valid_until"` +} + +// SignResponse is sent by the server. +// `Status' is "ok" or "error". +// `Response' contains a signed certificate or an error message. +type SignResponse struct { + Status string `json:"status"` + Response string `json:"response"` +} -- cgit v1.2.3