@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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. 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 TypeScrip 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.
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digitaldefiance/secrets",
3
- "version": "2.0.4",
3
+ "version": "2.0.6",
4
4
  "description": "Shamir's threshold secret sharing scheme",
5
5
  "main": "dist/secrets.js",
6
6
  "module": "dist/esm/secrets.js",