@vollcrypt/messages-node 0.2.0 → 0.9.0
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 +10 -7
- package/package.json +2 -2
- package/vollcrypt.win32-x64-msvc.node +0 -0
package/README.md
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
# @vollcrypt/node
|
|
1
|
+
# @vollcrypt/messages-node
|
|
2
2
|
|
|
3
3
|
**Cross-platform, quantum-resistant cryptography engine for Node.js - Native Binding**
|
|
4
4
|
|
|
5
|
-
[](https://www.npmjs.com/package/@vollcrypt/node)
|
|
6
|
-
[](https://github.com/BeratVural/vollcrypt/blob/main/LICENSE)
|
|
5
|
+
[](https://www.npmjs.com/package/@vollcrypt/messages-node)
|
|
6
|
+
[](https://github.com/BeratVural/vollcrypt/blob/main/LICENSE-GPL)
|
|
7
|
+
[](https://github.com/BeratVural/vollcrypt/blob/main/LICENSE-COMMERCIAL.md)
|
|
7
8
|
|
|
8
9
|
This package provides the high-performance **native Node.js bindings** for the Vollcrypt cryptography engine. It is compiled directly from Rust using NAPI-RS, offering maximum performance and utilizing hardware-accelerated instructions (such as AES-NI) where available.
|
|
9
10
|
|
|
@@ -17,7 +18,7 @@ This package provides the high-performance **native Node.js bindings** for the V
|
|
|
17
18
|
## Installation
|
|
18
19
|
|
|
19
20
|
```bash
|
|
20
|
-
npm install @vollcrypt/node
|
|
21
|
+
npm install @vollcrypt/messages-node
|
|
21
22
|
```
|
|
22
23
|
|
|
23
24
|
*Note: When you install this package, npm will automatically download the correct pre-compiled native binary for your operating system and CPU architecture.*
|
|
@@ -25,7 +26,7 @@ npm install @vollcrypt/node
|
|
|
25
26
|
## Quick Start
|
|
26
27
|
|
|
27
28
|
```javascript
|
|
28
|
-
const vollcrypt = require('@vollcrypt/node');
|
|
29
|
+
const vollcrypt = require('@vollcrypt/messages-node');
|
|
29
30
|
|
|
30
31
|
// Generate an Ed25519 Identity Keypair
|
|
31
32
|
const identity = vollcrypt.generateEd25519Keypair();
|
|
@@ -52,6 +53,8 @@ For full API documentation, architecture details, and the WebAssembly equivalent
|
|
|
52
53
|
|
|
53
54
|
## License
|
|
54
55
|
|
|
55
|
-
This project is licensed under
|
|
56
|
+
This project is dual-licensed under:
|
|
57
|
+
- **GPL-3.0-only** (for open-source distribution) — see the [LICENSE-GPL](https://github.com/BeratVural/vollcrypt/blob/main/LICENSE-GPL) file.
|
|
58
|
+
- **Commercial License** (for proprietary software integrations) — see the [LICENSE-COMMERCIAL.md](https://github.com/BeratVural/vollcrypt/blob/main/LICENSE-COMMERCIAL.md) file.
|
|
56
59
|
|
|
57
|
-
For commercial
|
|
60
|
+
For inquiries regarding commercial license purchases, pricing tiers, or custom enterprise terms, please contact Berat Vural at [berat.vural.tr@gmail.com](mailto:berat.vural.tr@gmail.com).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vollcrypt/messages-node",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Cross-platform, quantum-resistant cryptography engine for Node.js - native binding",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"napi"
|
|
45
45
|
],
|
|
46
46
|
"author": "Berat Vural <berat.vural.tr@gmail.com>",
|
|
47
|
-
"license": "GPL-3.0-only",
|
|
47
|
+
"license": "GPL-3.0-only OR LicenseRef-Commercial",
|
|
48
48
|
"napi": {
|
|
49
49
|
"name": "vollcrypt",
|
|
50
50
|
"triples": {
|
|
Binary file
|