Skip to content

Commit

Permalink
feat(): modify mod path
Browse files Browse the repository at this point in the history
  • Loading branch information
zyjblockchain committed Jun 17, 2021
1 parent 44fefb8 commit 8f4b222
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand All @@ -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`:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/everFinance/tcrsa
module github.com/everFinance/ttcrsa

go 1.12

Expand Down
2 changes: 1 addition & 1 deletion key_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"crypto/sha256"
"encoding/base64"
"fmt"
"github.com/everFinance/tcrsa"
"github.com/everFinance/ttcrsa"
"math/big"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion tcrsa_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"crypto/rsa"
"crypto/sha256"
"fmt"
"github.com/everFinance/tcrsa"
"github.com/everFinance/ttcrsa"
"github.com/stretchr/testify/assert"
"testing"
)
Expand Down

0 comments on commit 8f4b222

Please sign in to comment.