From 89fef80d32708874c95742db0a7b593bcfd3b31d Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sun, 4 Oct 2015 14:36:20 +0200 Subject: Run go fmt --- cryptfs/nonce.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cryptfs/nonce.go') diff --git a/cryptfs/nonce.go b/cryptfs/nonce.go index 3e464a3..80134c3 100644 --- a/cryptfs/nonce.go +++ b/cryptfs/nonce.go @@ -1,17 +1,17 @@ package cryptfs import ( + "crypto/rand" "encoding/binary" "encoding/hex" "sync" - "crypto/rand" ) type nonce96 struct { - lock sync.Mutex + lock sync.Mutex high32 uint32 - low64 uint64 - ready int + low64 uint64 + ready int } var gcmNonce nonce96 -- cgit v1.2.3