From cd99838ed8f48a7af83c834870070c3b09a5339a Mon Sep 17 00:00:00 2001 From: Evgenii Stratonikov Date: Sat, 10 Dec 2022 12:36:49 +0300 Subject: [PATCH] Move from nspcc-dev to TrueCloudLab Signed-off-by: Evgenii Stratonikov --- ecdsa.go | 2 +- ecdsa_test.go | 2 +- go.mod | 4 ++-- go.sum | 4 ++-- load_test.go | 2 +- rfc6979.go | 4 ++-- rfc6979_test.go | 2 +- wif.go | 2 +- wif_test.go | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/ecdsa.go b/ecdsa.go index 58049f5..0cfac10 100644 --- a/ecdsa.go +++ b/ecdsa.go @@ -9,7 +9,7 @@ import ( "fmt" "math/big" - "github.com/nspcc-dev/neofs-crypto/internal" + "github.com/TrueCloudLab/frostfs-crypto/internal" ) const ( diff --git a/ecdsa_test.go b/ecdsa_test.go index 60f55a3..16d8a0b 100644 --- a/ecdsa_test.go +++ b/ecdsa_test.go @@ -11,7 +11,7 @@ import ( "strconv" "testing" - "github.com/nspcc-dev/neofs-crypto/test" + "github.com/TrueCloudLab/frostfs-crypto/test" "github.com/stretchr/testify/require" ) diff --git a/go.mod b/go.mod index 79b5758..3473d1b 100644 --- a/go.mod +++ b/go.mod @@ -1,9 +1,9 @@ -module github.com/nspcc-dev/neofs-crypto +module github.com/TrueCloudLab/frostfs-crypto go 1.16 require ( + github.com/TrueCloudLab/rfc6979 v0.3.0 github.com/mr-tron/base58 v1.2.0 - github.com/nspcc-dev/rfc6979 v0.2.0 github.com/stretchr/testify v1.7.0 ) diff --git a/go.sum b/go.sum index 4ad6ddb..c1b5be9 100644 --- a/go.sum +++ b/go.sum @@ -1,9 +1,9 @@ +github.com/TrueCloudLab/rfc6979 v0.3.0 h1:0SYMAfQWh/TjnofqYQHy+s3rmQ5gi0fvOaDbqd60/Ic= +github.com/TrueCloudLab/rfc6979 v0.3.0/go.mod h1:qylxFXFQ/sMvpZC/8JyWp+mfzk5Zj/KDT5FAbekhobc= 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/mr-tron/base58 v1.2.0 h1:T/HDJBh4ZCPbU39/+c3rRvE0uKBQlU27+QI8LJ4t64o= github.com/mr-tron/base58 v1.2.0/go.mod h1:BinMc/sQntlIE1frQmRFPUoPA1Zkr8VRgBdjWI2mNwc= -github.com/nspcc-dev/rfc6979 v0.2.0 h1:3e1WNxrN60/6N0DW7+UYisLeZJyfqZTNOjeV/toYvOE= -github.com/nspcc-dev/rfc6979 v0.2.0/go.mod h1:exhIh1PdpDC5vQmyEsGvc4YDM/lyQp/452QxGq/UEso= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= diff --git a/load_test.go b/load_test.go index b7c3fd4..f7a9e29 100644 --- a/load_test.go +++ b/load_test.go @@ -7,7 +7,7 @@ import ( "os" "testing" - "github.com/nspcc-dev/neofs-crypto/test" + "github.com/TrueCloudLab/frostfs-crypto/test" "github.com/stretchr/testify/require" ) diff --git a/rfc6979.go b/rfc6979.go index 91055b4..52f1592 100644 --- a/rfc6979.go +++ b/rfc6979.go @@ -6,8 +6,8 @@ import ( "fmt" "math/big" - "github.com/nspcc-dev/neofs-crypto/internal" - "github.com/nspcc-dev/rfc6979" + "github.com/TrueCloudLab/frostfs-crypto/internal" + "github.com/TrueCloudLab/rfc6979" ) const ( diff --git a/rfc6979_test.go b/rfc6979_test.go index 178016f..6b441bf 100644 --- a/rfc6979_test.go +++ b/rfc6979_test.go @@ -5,7 +5,7 @@ import ( "encoding/hex" "testing" - "github.com/nspcc-dev/neofs-crypto/test" + "github.com/TrueCloudLab/frostfs-crypto/test" "github.com/stretchr/testify/require" ) diff --git a/wif.go b/wif.go index 877d776..f2a947c 100644 --- a/wif.go +++ b/wif.go @@ -6,8 +6,8 @@ import ( "crypto/sha256" "fmt" + "github.com/TrueCloudLab/frostfs-crypto/internal" "github.com/mr-tron/base58" - "github.com/nspcc-dev/neofs-crypto/internal" ) const ( diff --git a/wif_test.go b/wif_test.go index ca18d0c..10a22bc 100644 --- a/wif_test.go +++ b/wif_test.go @@ -5,7 +5,7 @@ import ( "encoding/hex" "testing" - "github.com/nspcc-dev/neofs-crypto/test" + "github.com/TrueCloudLab/frostfs-crypto/test" "github.com/stretchr/testify/require" )