From 8f4b222369b01f802172f0a3f8fb9ba568c452df Mon Sep 17 00:00:00 2001 From: sandy <18382255942@163.com> Date: Thu, 17 Jun 2021 18:33:51 +0800 Subject: [PATCH] feat(): modify mod path --- README.md | 4 ++-- go.mod | 2 +- key_test.go | 2 +- tcrsa_test.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 315a59d..e10c526 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Golang Threshold Cryptography Library - RSA implementation -[![Go Report Card](https://goreportcard.com/badge/github.com/everFinance/tcrsa)](https://goreportcard.com/report/github.com/everFinance/tcrsa) [![Build Status](https://travis-ci.org/niclabs/tcrsa.svg?branch=master)](https://travis-ci.org/niclabs/tcrsa) [![GoDoc](https://godoc.org/github.com/niclabs/libtc-rsa?status.svg)](https://godoc.org/github.com/everFinance/tcrsa) +[![Go Report Card](https://goreportcard.com/badge/github.com/everFinance/ttcrsa)](https://goreportcard.com/report/github.com/everFinance/ttcrsa) [![Build Status](https://travis-ci.org/niclabs/tcrsa.svg?branch=master)](https://travis-ci.org/niclabs/tcrsa) [![GoDoc](https://godoc.org/github.com/niclabs/libtc-rsa?status.svg)](https://godoc.org/github.com/everFinance/ttcrsa) This library implements the cryptographic algorithms of Victor Shoup's paper [Practical Threshold Signatures](http://www.iacr.org/archive/eurocrypt2000/1807/18070209-new.pdf) in the Golang programming language. @@ -12,7 +12,7 @@ Due to Golang extensive standard library, this implementation does not have exte ### Installing ```shell -go get https://github.com/everFinance/tcrsa +go get https://github.com/everFinance/ttcrsa ``` To run the tests you just need to use `go test`: diff --git a/go.mod b/go.mod index 92061d8..90d8dd4 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/everFinance/tcrsa +module github.com/everFinance/ttcrsa go 1.12 diff --git a/key_test.go b/key_test.go index 051de30..c8b49c4 100644 --- a/key_test.go +++ b/key_test.go @@ -6,7 +6,7 @@ import ( "crypto/sha256" "encoding/base64" "fmt" - "github.com/everFinance/tcrsa" + "github.com/everFinance/ttcrsa" "math/big" "testing" ) diff --git a/tcrsa_test.go b/tcrsa_test.go index 53788d3..ad43efc 100644 --- a/tcrsa_test.go +++ b/tcrsa_test.go @@ -5,7 +5,7 @@ import ( "crypto/rsa" "crypto/sha256" "fmt" - "github.com/everFinance/tcrsa" + "github.com/everFinance/ttcrsa" "github.com/stretchr/testify/assert" "testing" )