kyber-mini 1.0.0 → 1.0.1
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 +6 -0
- package/package.json +11 -3
package/README.md
CHANGED
|
@@ -23,7 +23,13 @@ const decryptedMessage = kyber_pke1024.decrypt(ciphertext, keys.privateKey); //
|
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
## Instalation
|
|
26
|
+
```bash
|
|
27
|
+
bun install
|
|
28
|
+
```
|
|
29
|
+
or
|
|
30
|
+
```bash
|
|
26
31
|
npm install kyber-mini
|
|
32
|
+
```
|
|
27
33
|
|
|
28
34
|
## Audit
|
|
29
35
|
This library has not been audited by a third party.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kyber-mini",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "A lightweight kyber PKE and KEM library",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "rag27",
|
|
@@ -22,6 +22,14 @@
|
|
|
22
22
|
},
|
|
23
23
|
"repository": {
|
|
24
24
|
"type": "git",
|
|
25
|
-
"url": "
|
|
26
|
-
}
|
|
25
|
+
"url": "https://codeberg.org/RAG27/kyber"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"ml-kem",
|
|
29
|
+
"kyber",
|
|
30
|
+
"post-quantum",
|
|
31
|
+
"cryptography",
|
|
32
|
+
"fips203",
|
|
33
|
+
"pqc"
|
|
34
|
+
]
|
|
27
35
|
}
|