Skip to content

Commit f6c5b13

Browse files
committed
Aligned to dependencies.
1 parent 5db0385 commit f6c5b13

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[package]
22
name = "sskr"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
edition = "2021"
55
description = "Sharded Secret Key Reconstruction (SSKR) for Rust."
66
authors = ["Blockchain Commons"]
77
repository = "https://github.com/BlockchainCommons/bc-sskr-rust"
88
readme = "README.md"
99
license = "BSD-2-Clause-Patent"
1010
documentation = "https://docs.rs/sskr"
11-
keywords = ["cryptography"] # Up to five
12-
categories = ["cryptography"] # https://crates.io/category_slugs
11+
keywords = ["cryptography"] # Up to five
12+
categories = ["cryptography"] # https://crates.io/category_slugs
1313

1414
[dependencies]
15-
bc-rand = "^0.2.1"
16-
bc-shamir = "^0.5.0"
15+
bc-rand = "^0.3.0"
16+
bc-shamir = "^0.6.0"
1717

1818
thiserror = "^1.0.48"
1919

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88

99
## Introduction
1010

11-
Sharded Secret Key Reconstruction (SSKR) is a protocol for splitting a *secret* into a set of *shares* across one or more *groups*, such that the secret can be reconstructed from any combination of shares totaling or exceeding a *threshold* number of shares within each group and across all groups. SSKR is a generalization of Shamir's Secret Sharing (SSS) that allows for multiple groups and multiple thresholds.
11+
Sharded Secret Key Reconstruction (SSKR) is a protocol for splitting a _secret_ into a set of _shares_ across one or more _groups_, such that the secret can be reconstructed from any combination of shares totaling or exceeding a _threshold_ number of shares within each group and across all groups. SSKR is a generalization of Shamir's Secret Sharing (SSS) that allows for multiple groups and multiple thresholds.
1212

1313
## Getting Started
1414

1515
```toml
1616
[dependencies]
17-
sskr = "0.5.0"
17+
sskr = "0.6.0"
1818
```
1919

2020
## Specification
@@ -64,10 +64,10 @@ If your company requires support to use our projects, please feel free to contac
6464

6565
The following people directly contributed to this repository. You can add your name here by getting involved. The first step is learning how to contribute from our [CONTRIBUTING.md](./CONTRIBUTING.md) documentation.
6666

67-
| Name | Role | Github | Email | GPG Fingerprint |
68-
| ----------------- | ------------------- | ------------------------------------------------- | ------------------------------------- | -------------------------------------------------- |
69-
| Christopher Allen | Principal Architect | [@ChristopherA](https://github.com/ChristopherA) | \<[email protected]\> | FDFE 14A5 4ECB 30FC 5D22 74EF F8D3 6C91 3574 05ED |
70-
| Wolf McNally | Lead Researcher/Engineer | [@WolfMcNally](https://github.com/wolfmcnally) | \<[email protected]\> | 9436 52EE 3844 1760 C3DC  3536 4B6C 2FCF 8947 80AE |
67+
| Name | Role | Github | Email | GPG Fingerprint |
68+
| ----------------- | ------------------------ | ------------------------------------------------ | ------------------------------------- | -------------------------------------------------- |
69+
| Christopher Allen | Principal Architect | [@ChristopherA](https://github.com/ChristopherA) | \<[email protected]\> | FDFE 14A5 4ECB 30FC 5D22 74EF F8D3 6C91 3574 05ED |
70+
| Wolf McNally | Lead Researcher/Engineer | [@WolfMcNally](https://github.com/wolfmcnally) | \<[email protected]\> | 9436 52EE 3844 1760 C3DC  3536 4B6C 2FCF 8947 80AE |
7171

7272
## Responsible Disclosure
7373

@@ -81,8 +81,8 @@ Please report suspected security vulnerabilities in private via email to Christo
8181

8282
The following keys may be used to communicate sensitive information to developers:
8383

84-
| Name | Fingerprint |
85-
| ----------------- | -------------------------------------------------- |
86-
| Christopher Allen | FDFE 14A5 4ECB 30FC 5D22 74EF F8D3 6C91 3574 05ED |
84+
| Name | Fingerprint |
85+
| ----------------- | ------------------------------------------------- |
86+
| Christopher Allen | FDFE 14A5 4ECB 30FC 5D22 74EF F8D3 6C91 3574 05ED |
8787

8888
You can import a key by running the following command with that individual’s fingerprint: `gpg --recv-keys "<fingerprint>"` Ensure that you put quotes around fingerprints that contain spaces.

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/sskr/0.5.0")]
1+
#![doc(html_root_url = "https://docs.rs/sskr/0.6.0")]
22
#![warn(rust_2018_idioms)]
33

44
//! # Introduction
@@ -9,7 +9,7 @@
99
//!
1010
//! ```toml
1111
//! [dependencies]
12-
//! sskr = "0.5.0"
12+
//! sskr = "0.6.0"
1313
//! ```
1414
//!
1515
//! # Example

0 commit comments

Comments
 (0)