diff options
author | Christian Stewart | 2022-06-25 14:57:38 -0700 |
---|---|---|
committer | rfjakob | 2022-12-21 18:38:11 +0100 |
commit | 7ee4c8e9c3b0fb630b48c5940a7faa220ef5e63a (patch) | |
tree | 876db025c672902e27eb85fdac7d797b84b00390 /internal/speed/speed.go | |
parent | 0ec7ffbfe96887f25feb7fda60b984ea18a42e0f (diff) |
go.mod: fix jacobsa/crypto build on riscv64
Replace dependency jacobsa/crypto with a fork with support for riscv64.
Issue: https://github.com/rfjakob/gocryptfs/issues/666
Upstream PR: https://github.com/jacobsa/crypto/issues/13
Unaddressed on jacobsa/crypto:
https://github.com/jacobsa/crypto/pull/14#issuecomment-1182744229
Signed-off-by: Christian Stewart <christian@paral.in>
Diffstat (limited to 'internal/speed/speed.go')
-rw-r--r-- | internal/speed/speed.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/speed/speed.go b/internal/speed/speed.go index aef3ad6..950bbda 100644 --- a/internal/speed/speed.go +++ b/internal/speed/speed.go @@ -140,7 +140,7 @@ func bGoGCM(b *testing.B) { bEncrypt(b, gGCM) } -// bAESSIV benchmarks AES-SIV from github.com/jacobsa/crypto/siv +// bAESSIV benchmarks AES-SIV from github.com/aperturerobotics/jacobsa-crypto/siv func bAESSIV(b *testing.B) { c := siv_aead.New(randBytes(64)) bEncrypt(b, c) |