diff --git a/ecdsa.go b/ecdsa.go index 0cfac10..bb9da71 100644 --- a/ecdsa.go +++ b/ecdsa.go @@ -9,7 +9,7 @@ import ( "fmt" "math/big" - "github.com/TrueCloudLab/frostfs-crypto/internal" + "git.frostfs.info/TrueCloudLab/frostfs-crypto/internal" ) const ( diff --git a/ecdsa_test.go b/ecdsa_test.go index 16d8a0b..72fb035 100644 --- a/ecdsa_test.go +++ b/ecdsa_test.go @@ -11,7 +11,7 @@ import ( "strconv" "testing" - "github.com/TrueCloudLab/frostfs-crypto/test" + "git.frostfs.info/TrueCloudLab/frostfs-crypto/test" "github.com/stretchr/testify/require" ) diff --git a/go.mod b/go.mod index 3473d1b..e0c5395 100644 --- a/go.mod +++ b/go.mod @@ -1,9 +1,9 @@ -module github.com/TrueCloudLab/frostfs-crypto +module git.frostfs.info/TrueCloudLab/frostfs-crypto go 1.16 require ( - github.com/TrueCloudLab/rfc6979 v0.3.0 + git.frostfs.info/TrueCloudLab/rfc6979 v0.4.0 github.com/mr-tron/base58 v1.2.0 github.com/stretchr/testify v1.7.0 ) diff --git a/go.sum b/go.sum index c1b5be9..b1951a7 100644 --- a/go.sum +++ b/go.sum @@ -1,5 +1,5 @@ -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= +git.frostfs.info/TrueCloudLab/rfc6979 v0.4.0 h1:M2KR3iBj7WpY3hP10IevfIB9MURr4O9mwVfJ+SjT3HA= +git.frostfs.info/TrueCloudLab/rfc6979 v0.4.0/go.mod h1:okpbKfVYf/BpejtfFTfhZqFP+sZ8rsHrP8Rr/jYPNRc= 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= diff --git a/load_test.go b/load_test.go index f7a9e29..e46040c 100644 --- a/load_test.go +++ b/load_test.go @@ -7,7 +7,7 @@ import ( "os" "testing" - "github.com/TrueCloudLab/frostfs-crypto/test" + "git.frostfs.info/TrueCloudLab/frostfs-crypto/test" "github.com/stretchr/testify/require" ) diff --git a/rfc6979.go b/rfc6979.go index 52f1592..a4d0dc0 100644 --- a/rfc6979.go +++ b/rfc6979.go @@ -6,8 +6,8 @@ import ( "fmt" "math/big" - "github.com/TrueCloudLab/frostfs-crypto/internal" - "github.com/TrueCloudLab/rfc6979" + "git.frostfs.info/TrueCloudLab/frostfs-crypto/internal" + "git.frostfs.info/TrueCloudLab/rfc6979" ) const ( diff --git a/rfc6979_test.go b/rfc6979_test.go index 6b441bf..38a60dc 100644 --- a/rfc6979_test.go +++ b/rfc6979_test.go @@ -5,7 +5,7 @@ import ( "encoding/hex" "testing" - "github.com/TrueCloudLab/frostfs-crypto/test" + "git.frostfs.info/TrueCloudLab/frostfs-crypto/test" "github.com/stretchr/testify/require" ) diff --git a/wif.go b/wif.go index f2a947c..7b49bb0 100644 --- a/wif.go +++ b/wif.go @@ -6,7 +6,7 @@ import ( "crypto/sha256" "fmt" - "github.com/TrueCloudLab/frostfs-crypto/internal" + "git.frostfs.info/TrueCloudLab/frostfs-crypto/internal" "github.com/mr-tron/base58" ) diff --git a/wif_test.go b/wif_test.go index 10a22bc..18023af 100644 --- a/wif_test.go +++ b/wif_test.go @@ -5,7 +5,7 @@ import ( "encoding/hex" "testing" - "github.com/TrueCloudLab/frostfs-crypto/test" + "git.frostfs.info/TrueCloudLab/frostfs-crypto/test" "github.com/stretchr/testify/require" )