Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #24

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ key generation with a trusted dealer.

### Key Management

If the [DKG](https://github.com/bytemare/dkg) package was used to generate keys, signers can use the produced KeyShare
If the compatible [DKG](https://github.com/bytemare/dkg) package was used to generate keys, signers can use the produced KeyShare
and must communicate their PublicKeyShare to the coordinator and other signers.

It is easy to encode and decode these key shares and public key shares for transmission and storage,
Expand All @@ -81,7 +81,7 @@ easily recovered using the corresponding ```Decode()``` method.
More generally, to decode an element (or point) in the Ristretto255 group,
```go
import (
"https://github.com/bytemare/ecc"
"github.com/bytemare/ecc"
)

bytesPublicKey := []byte{1, 2, 3, ...}
Expand All @@ -97,7 +97,7 @@ if err := publicKey.Decode(bytesPublicKey); err != nil {
The same goes for secret keys (or scalars),
```go
import (
"https://github.com/bytemare/ecc"
"github.com/bytemare/ecc"
)

bytesSecretKey := []byte{1, 2, 3, ...}
Expand Down
Loading