From 476813559e29aa42a929f5e3e822e4dacbfe2789 Mon Sep 17 00:00:00 2001 From: Evgenii Stratonikov Date: Fri, 9 Dec 2022 19:04:26 +0300 Subject: [PATCH] Move from nspcc-dev to TrueCloudLab Signed-off-by: Evgenii Stratonikov --- README.md | 4 ++-- dsa_test.go | 2 +- ecdsa_test.go | 2 +- go.mod | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 248cebe..db2c86b 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ rfc6979 ======= -[![Build Status](https://travis-ci.org/nspcc-dev/rfc6979.png?branch=master)](https://travis-ci.org/nspcc-dev/rfc6979) +[![Build Status](https://travis-ci.org/TrueCloudLab/rfc6979.png?branch=master)](https://travis-ci.org/TrueCloudLab/rfc6979) A Go implementation of [RFC 6979](https://tools.ietf.org/html/rfc6979)'s deterministic DSA/ECDSA signature scheme. -For documentation, check [godoc](http://godoc.org/github.com/nspcc-dev/rfc6979). +For documentation, check [godoc](http://godoc.org/github.com/TrueCloudLab/rfc6979). diff --git a/dsa_test.go b/dsa_test.go index dcf8cb4..088e4f8 100644 --- a/dsa_test.go +++ b/dsa_test.go @@ -10,7 +10,7 @@ import ( "math/big" "testing" - "github.com/nspcc-dev/rfc6979" + "github.com/TrueCloudLab/rfc6979" ) type dsaFixture struct { diff --git a/ecdsa_test.go b/ecdsa_test.go index aa90346..e8cfc83 100644 --- a/ecdsa_test.go +++ b/ecdsa_test.go @@ -10,7 +10,7 @@ import ( "math/big" "testing" - "github.com/nspcc-dev/rfc6979" + "github.com/TrueCloudLab/rfc6979" ) type ecdsaFixture struct { diff --git a/go.mod b/go.mod index 3e33f15..ce894f4 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/nspcc-dev/rfc6979 +module github.com/TrueCloudLab/rfc6979 go 1.12 -- 2.45.2