Skip to content

Commit

Permalink
Update module cunicu.li/go-iso7816 to v0.6.0
Browse files Browse the repository at this point in the history
Signed-off-by: Steffen Vogel <[email protected]>
  • Loading branch information
stv0g authored and renovate[bot] committed May 25, 2024
1 parent 1ca8c96 commit 672a73f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module cunicu.li/go-openpgp-card

go 1.22.2

require cunicu.li/go-iso7816 v0.5.2
require cunicu.li/go-iso7816 v0.6.0

require (
github.com/davecgh/go-spew v1.1.1 // test-only
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
cunicu.li/go-iso7816 v0.5.2 h1:hdGm6xLZ5//FjRSFxMRfuqfEFDIu6bIlKreKrXH6Fx8=
cunicu.li/go-iso7816 v0.5.2/go.mod h1:OwF8/IxfJAi/GEuMv3cv7jXFmbto+7lDwl2eknMucoA=
cunicu.li/go-iso7816 v0.6.0 h1:l0CzHZWN7FFLJOGY1NUQGyRxv0IuZODpMvEHWFIvOz4=
cunicu.li/go-iso7816 v0.6.0/go.mod h1:DBXPMv/k9XQplA9qQT2k/Xo2gPCWQ9/rIh+h4hzJ850=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
Expand Down
4 changes: 2 additions & 2 deletions key_rsa_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"fmt"
"testing"

"cunicu.li/go-iso7816/test"
"cunicu.li/go-iso7816/drivers/pcsc"
"github.com/stretchr/testify/require"

pgp "cunicu.li/go-openpgp-card"
Expand Down Expand Up @@ -52,7 +52,7 @@ func testImportKeyRSA(t *testing.T) {
withCard(t, true, func(t *testing.T, c *pgp.Card) {
require := require.New(t)

if test.PCSCCard(c.Card) == nil {
if _, ok := c.Base().(*pcsc.Card); !ok {
t.Skip("RSA key generation is not deterministic. Mocked tests are broken")
}

Expand Down

0 comments on commit 672a73f

Please sign in to comment.