diff --git a/compose/pebble/pebble-config.json b/compose/pebble/pebble-config.json index fd933a3e5..8516a18ed 100644 --- a/compose/pebble/pebble-config.json +++ b/compose/pebble/pebble-config.json @@ -9,4 +9,4 @@ "ocspResponderURL": "", "externalAccountBindingRequired": false } -} \ No newline at end of file +} diff --git a/pkg/crypto/keys/keys.go b/pkg/crypto/keys/keys.go index 042eae5f8..046dcfdd3 100644 --- a/pkg/crypto/keys/keys.go +++ b/pkg/crypto/keys/keys.go @@ -12,7 +12,6 @@ // OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR // PERFORMANCE OF THIS SOFTWARE. -// Package keys provides utilities for generating cryptographic keys package keys import ( @@ -24,7 +23,6 @@ import ( "fmt" ) -// Type represents the type of cryptographic key type Type string const ( diff --git a/pkg/crypto/pem/pem_test.go b/pkg/crypto/pem/pem_test.go index c80a318d6..53d7682a5 100644 --- a/pkg/crypto/pem/pem_test.go +++ b/pkg/crypto/pem/pem_test.go @@ -75,10 +75,10 @@ func TestEncodeCertificate(t *testing.T) { func TestEncodePrivateKey(t *testing.T) { tests := []struct { - name string - generateKey func() (crypto.Signer, error) - expectedType string - parseFunc func([]byte) (crypto.Signer, error) + name string + generateKey func() (crypto.Signer, error) + expectedType string + parseFunc func([]byte) (crypto.Signer, error) }{ { name: "ECDSA P256", @@ -337,4 +337,4 @@ func mustGenerateKey(gen func() (crypto.Signer, error)) crypto.Signer { panic(err) } return key -} \ No newline at end of file +}