diff options
| author | Jakob Unterwurzacher | 2025-06-02 21:50:25 +0200 | 
|---|---|---|
| committer | Jakob Unterwurzacher | 2025-06-02 21:50:25 +0200 | 
| commit | fb4f2deb5116075a8a38c048cd5e67b554620181 (patch) | |
| tree | 6a124bf252763487c541a88b54033bcc52a3a467 | |
| parent | 8267bf8c3f67d10c430431d438f35281c0b9fbca (diff) | |
go.mod: upgrade jacobsa-crypto
This pulls in
	https://github.com/aperturerobotics/jacobsa-crypto/commit/e3f78416c5c1dbdfef68c84d62a97a809a94f4dd
	"fix build error on loong64 (#8)"
and fixes this build error on loong64:
	$ GOARCH=loong64 go build -tags without_openssl
	# github.com/aperturerobotics/jacobsa-crypto/cmac
	../../go/pkg/mod/github.com/aperturerobotics/jacobsa-crypto@v1.0.2/cmac/hash.go:97:3: undefined: xorBlock
| -rw-r--r-- | go.mod | 2 | ||||
| -rw-r--r-- | go.sum | 4 | 
2 files changed, 3 insertions, 3 deletions
| @@ -3,7 +3,7 @@ module github.com/rfjakob/gocryptfs/v2  go 1.19  require ( -	github.com/aperturerobotics/jacobsa-crypto v1.0.2 +	github.com/aperturerobotics/jacobsa-crypto v1.1.0  	github.com/hanwen/go-fuse/v2 v2.7.3-0.20250306214706-e3463465126a  	github.com/moby/sys/mountinfo v0.7.2  	github.com/pkg/xattr v0.4.9 @@ -1,5 +1,5 @@ -github.com/aperturerobotics/jacobsa-crypto v1.0.2 h1:tNvVy1rev9FagnOyBmTcI6d23FfNceG9IujZROTRtlc= -github.com/aperturerobotics/jacobsa-crypto v1.0.2/go.mod h1:buWU1iY+FjIcfpb1aYfFJZfl07WlS7O30lTyC2iwjv8= +github.com/aperturerobotics/jacobsa-crypto v1.1.0 h1:0hig54FMzU80OHrqSfqmj/W8HydRymVdz2K6D9Guffs= +github.com/aperturerobotics/jacobsa-crypto v1.1.0/go.mod h1:buWU1iY+FjIcfpb1aYfFJZfl07WlS7O30lTyC2iwjv8=  github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=  github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=  github.com/hanwen/go-fuse/v2 v2.7.3-0.20250306214706-e3463465126a h1:Q+A/Qcj02oRubB/7+18SGNxAG/GtnoXxf0UKRJ2/ZE4= | 
