forked from TrueCloudLab/certificates
add //nolint for new 1.16 deprecation warnings
- dsa - pem.DecryptPEMBlock
This commit is contained in:
parent
296d9ee293
commit
f88f58440f
4 changed files with 4 additions and 4 deletions
|
@ -3,7 +3,7 @@ package api
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"crypto"
|
"crypto"
|
||||||
"crypto/dsa"
|
"crypto/dsa" //nolint
|
||||||
"crypto/ecdsa"
|
"crypto/ecdsa"
|
||||||
"crypto/rsa"
|
"crypto/rsa"
|
||||||
"crypto/x509"
|
"crypto/x509"
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"context"
|
"context"
|
||||||
"crypto"
|
"crypto"
|
||||||
"crypto/dsa"
|
"crypto/dsa" //nolint
|
||||||
"crypto/ecdsa"
|
"crypto/ecdsa"
|
||||||
"crypto/elliptic"
|
"crypto/elliptic"
|
||||||
"crypto/rand"
|
"crypto/rand"
|
||||||
|
|
|
@ -83,7 +83,7 @@ func TestSoftKMS_CreateSigner(t *testing.T) {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
block, _ := pem.Decode(b)
|
block, _ := pem.Decode(b)
|
||||||
block.Bytes, err = x509.DecryptPEMBlock(block, []byte("pass"))
|
block.Bytes, err = x509.DecryptPEMBlock(block, []byte("pass")) //nolint
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
|
@ -295,7 +295,7 @@ func TestSSHAgentKMS_CreateSigner(t *testing.T) {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
block, _ := pem.Decode(b)
|
block, _ := pem.Decode(b)
|
||||||
block.Bytes, err = x509.DecryptPEMBlock(block, []byte("pass"))
|
block.Bytes, err = x509.DecryptPEMBlock(block, []byte("pass")) //nolint
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue