File: 003-revert-jacobsa-fork.patch

package info (click to toggle)
gocryptfs 2.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 5,132 kB
  • sloc: sh: 1,091; ansic: 208; makefile: 88
file content (31 lines) | stat: -rw-r--r-- 764 bytes parent folder | download | duplicates (2)
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