@digitaldefiance/secrets 2.0.4 → 2.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ A modern, browser-compatible implementation of Shamir's threshold secret sharing
|
|
|
16
16
|
|
|
17
17
|
## About
|
|
18
18
|
|
|
19
|
-
@digitaldefiance/secrets is a pure
|
|
19
|
+
@digitaldefiance/secrets is a pure TypeScript implementation of [Shamir's threshold secret sharing scheme](http://en.wikipedia.org/wiki/Shamir's_Secret_Sharing) that works natively in both Node.js and modern browsers without requiring any polyfills or shims.
|
|
20
20
|
|
|
21
21
|
It can be used to split any "secret" (i.e. a password, text file, Bitcoin private key, anything) into _n_ number of "shares" (each the same size in bits as the original secret), requiring that exactly any number _t_ ("threshold") of them be present to reconstruct the original secret.
|
|
22
22
|
|