From 670aab219b32cc701909594bcce604d7028a8e9c Mon Sep 17 00:00:00 2001 From: Mike Arpaia Date: Thu, 4 Aug 2016 15:44:54 -0700 Subject: [PATCH] Use crypto/rand instead of math/rand --- auth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth.go b/auth.go index 4b941da6ae..1a04384549 100644 --- a/auth.go +++ b/auth.go @@ -1,10 +1,10 @@ package main import ( + "crypto/rand" "encoding/base64" "errors" "fmt" - "math/rand" "github.com/Sirupsen/logrus" "github.com/dgrijalva/jwt-go"