diff options
| author | Jakob Unterwurzacher | 2016-10-04 23:30:05 +0200 | 
|---|---|---|
| committer | Jakob Unterwurzacher | 2016-10-04 23:30:05 +0200 | 
| commit | a4956fa6bfde27c21f70e8577ebb586ccc9a3691 (patch) | |
| tree | bf4cf674dee6bcb3287755cc4d15807e5c518d4e /internal/stupidgcm | |
| parent | b764917cd5c1b1d61b8ce08e7af0b29793fbbb80 (diff) | |
A few more lint fixes
Diffstat (limited to 'internal/stupidgcm')
| -rw-r--r-- | internal/stupidgcm/stupidgcm.go | 2 | ||||
| -rw-r--r-- | internal/stupidgcm/without_openssl.go | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/internal/stupidgcm/stupidgcm.go b/internal/stupidgcm/stupidgcm.go index 58027f8..6e551f5 100644 --- a/internal/stupidgcm/stupidgcm.go +++ b/internal/stupidgcm/stupidgcm.go @@ -16,7 +16,7 @@ import (  )  const ( -	// Has openssl been disabled at compile-time? +	// BuiltWithoutOpenssl indicates if openssl been disabled at compile-time  	BuiltWithoutOpenssl = false  	keyLen = 32 diff --git a/internal/stupidgcm/without_openssl.go b/internal/stupidgcm/without_openssl.go index 0b3cf90..91dd33c 100644 --- a/internal/stupidgcm/without_openssl.go +++ b/internal/stupidgcm/without_openssl.go @@ -11,7 +11,7 @@ import (  type stupidGCM struct{}  const ( -	// Has openssl been disabled at compile-time? +	// BuiltWithoutOpenssl indicates if openssl been disabled at compile-time  	BuiltWithoutOpenssl = true  )  | 
