Skip to content

Commit

Permalink
Fix linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
hslatman committed Feb 7, 2024
1 parent 7a5f8ae commit f5b6552
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scep_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ func (d *nonRSADecrypter) Public() crypto.PublicKey {
return struct{}{}
}

func (d *nonRSADecrypter) Decrypt(rand io.Reader, msg []byte, opts crypto.DecrypterOpts) (plaintext []byte, err error) {
return nil, nil
func (d *nonRSADecrypter) Decrypt(_ io.Reader, _ []byte, _ crypto.DecrypterOpts) (plaintext []byte, err error) {
return nil, errors.New("not implemented")
}

func TestDecryptPKIEnvelopeCert(t *testing.T) {
Expand Down

0 comments on commit f5b6552

Please sign in to comment.