1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
Author: Unit 193 <unit193@debian.org>
Forwarded: not-needed
Description: Revert the switch to a jacobsa/crypto fork, not in Debian.
> github.com/aperturerobotics/jacobsa-crypto --> github.com/jacobsa/crypto
--- a/internal/siv_aead/correctness_test.go
+++ b/internal/siv_aead/correctness_test.go
@@ -4,9 +4,9 @@
"bytes"
"encoding/hex"
"testing"
- "github.com/aperturerobotics/jacobsa-crypto/siv"
+ "github.com/jacobsa/crypto/siv"
)
// Test all supported key lengths
func TestKeyLens(t *testing.T) {
--- a/internal/siv_aead/siv_aead.go
+++ b/internal/siv_aead/siv_aead.go
@@ -5,9 +5,9 @@
import (
"crypto/cipher"
"log"
- "github.com/aperturerobotics/jacobsa-crypto/siv"
+ "github.com/jacobsa/crypto/siv"
)
type sivAead struct {
key []byte
|