From 7d21c1f9bbce07e3aa3f5a95ee7e1fc1c2e818c6 Mon Sep 17 00:00:00 2001 From: Seth Schoen Date: Thu, 31 May 2012 19:48:56 -0700 Subject: [PATCH] sig is bytes (8-bit clean); timestamp is int64 --- webserver/chocolate_protocol.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webserver/chocolate_protocol.proto b/webserver/chocolate_protocol.proto index 84a8b65e7..426d0516f 100644 --- a/webserver/chocolate_protocol.proto +++ b/webserver/chocolate_protocol.proto @@ -7,7 +7,7 @@ message chocolatemessage { required string recipient = 3; required string nonce = 4; required string csr = 5; - required string sig = 6; + required bytes sig = 6; optional string clientpuzzle = 7; /* server can specify difficulty? */ } @@ -36,7 +36,7 @@ message chocolatemessage { } message Proceed { - required string timestamp = 1; + required int64 timestamp = 1; optional int32 polldelay = 2; }