Skip to content

Commit

Permalink
Merge branch 'main' into cesar/gowrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarfda authored Dec 13, 2024
2 parents 3378955 + 2717386 commit f816a30
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ee/localserver/krypto-ec-middleware_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ func TestKryptoEcMiddleware(t *testing.T) {
require.NoError(t, err)
require.Equal(t, challengeId, responseUnmarshalled.ChallengeId)

opened, err := responseUnmarshalled.Open(*privateEncryptionKey)
opened, err := responseUnmarshalled.Open(privateEncryptionKey)
require.NoError(t, err)
require.Equal(t, challengeData, opened.ChallengeData)

Expand Down Expand Up @@ -402,7 +402,7 @@ func Test_AllowedOrigin(t *testing.T) {
require.NoError(t, err)
require.Equal(t, challengeId, responseUnmarshalled.ChallengeId)

opened, err := responseUnmarshalled.Open(*privateEncryptionKey)
opened, err := responseUnmarshalled.Open(privateEncryptionKey)
require.NoError(t, err)
require.Equal(t, challengeData, opened.ChallengeData)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ require (
github.com/groob/plist v0.0.0-20190114192801-a99fbe489d03
github.com/knightsc/system_policy v1.1.1-0.20211029142728-5f4c0d5419cc
github.com/kolide/kit v0.0.0-20241126150023-fbf6f0f5bf6a
github.com/kolide/krypto v0.1.1-0.20231229162826-db516b7e0121
github.com/kolide/krypto v0.1.1-0.20241212211625-46a8d5cad1cc
github.com/mat/besticon v3.9.0+incompatible
github.com/mattn/go-sqlite3 v1.14.19
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ github.com/kolide/goleveldb v0.0.0-20240514204455-8d30cd4d31c6 h1:6/RKW8FQlrtaBe
github.com/kolide/goleveldb v0.0.0-20240514204455-8d30cd4d31c6/go.mod h1:zgOxCKTwS/xpJtz6LH60b3lZoQ30kqtc252N+SM4enc=
github.com/kolide/kit v0.0.0-20241126150023-fbf6f0f5bf6a h1:QCPXSz6xocQ6V3Qph0H+qSnA1ewlr7GsVZ3FNZsYR/Y=
github.com/kolide/kit v0.0.0-20241126150023-fbf6f0f5bf6a/go.mod h1:pFbEKXFww1uqu4RRO7qCnUmQ2EIwKYRzUqpJbODNlfc=
github.com/kolide/krypto v0.1.1-0.20231229162826-db516b7e0121 h1:f7APX9VNsCkD/tdlAjbU4A22FyfTOCF6QadlvnzZElg=
github.com/kolide/krypto v0.1.1-0.20231229162826-db516b7e0121/go.mod h1:/0sxd3OIxciTlMTeZI/9WTaUHsx/K/+3f+NbD5dywTY=
github.com/kolide/krypto v0.1.1-0.20241212211625-46a8d5cad1cc h1:tuEDXi6ZftPX6JYR4JwRkRe1oPPS1Y+OUUNOEwBXwOg=
github.com/kolide/krypto v0.1.1-0.20241212211625-46a8d5cad1cc/go.mod h1:wGQHTBFhzTJKIVMbzvanNO1r3Uz4xD20WEPkF0sTN9A=
github.com/kolide/systray v1.10.5-0.20241021175748-13aef6380bdb h1:d2pfEh5Yd6+C+D096YQlHwcq28TPOjoeoG+lCQojkJM=
github.com/kolide/systray v1.10.5-0.20241021175748-13aef6380bdb/go.mod h1:rnPcECLGM9DY/+fb3O9WNKiPBPMCdNg3rkyadLWOCTU=
github.com/kolide/toast v1.0.2 h1:BQlIfO3wbKIEWfF0c8v4UkdhSIZYnSWaKkZl+Yarptk=
Expand Down

0 comments on commit f816a30

Please sign in to comment.