From c99fd103d868326cd5aa4a8df3c108b5d22d8add Mon Sep 17 00:00:00 2001 From: Timothee Cour Date: Thu, 15 Nov 2018 15:37:59 -0800 Subject: [PATCH] fix types.nim(19, 16) Error: expected a hex digit, but found: \ --- scram/private/types.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scram/private/types.nim b/scram/private/types.nim index 96aff92..c38a8ee 100644 --- a/scram/private/types.nim +++ b/scram/private/types.nim @@ -16,6 +16,6 @@ type const GS2_HEADER* = "n,," - INT_1* = "\x0\x0\x0\x1" + INT_1* = "\x00\x00\x00\x01" CLIENT_KEY* = "Client Key" SERVER_KEY* = "Server Key"