@vollcrypt/messages-wasm 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.
Files changed (2) hide show
  1. package/README.md +10 -7
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,9 +1,10 @@
1
- # @vollcrypt/wasm
1
+ # @vollcrypt/messages-wasm
2
2
 
3
3
  **Cross-platform, quantum-resistant cryptography engine - WebAssembly Binding**
4
4
 
5
- [![npm](https://img.shields.io/npm/v/@vollcrypt/wasm.svg)](https://www.npmjs.com/package/@vollcrypt/wasm)
6
- [![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://github.com/BeratVural/vollcrypt/blob/main/LICENSE)
5
+ [![npm](https://img.shields.io/npm/v/@vollcrypt/messages-wasm.svg)](https://www.npmjs.com/package/@vollcrypt/messages-wasm)
6
+ [![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://github.com/BeratVural/vollcrypt/blob/main/LICENSE-GPL)
7
+ [![License: Commercial](https://img.shields.io/badge/License-Commercial-goldenrod.svg)](https://github.com/BeratVural/vollcrypt/blob/main/LICENSE-COMMERCIAL.md)
7
8
 
8
9
  This package provides the **WebAssembly (WASM) bindings** for the Vollcrypt cryptography engine. It is compiled directly from Rust using `wasm-pack`, bringing robust, post-quantum cryptography straight to the user's browser or frontend application (React, Next.js, Vue, etc.) without relying on slow JavaScript cryptography implementations.
9
10
 
@@ -17,7 +18,7 @@ This package provides the **WebAssembly (WASM) bindings** for the Vollcrypt cryp
17
18
  ## Installation
18
19
 
19
20
  ```bash
20
- npm install @vollcrypt/wasm
21
+ npm install @vollcrypt/messages-wasm
21
22
  ```
22
23
 
23
24
  *Note: Since this is a WebAssembly module, you may need to configure your bundler (Webpack, Vite, Rollup) to handle `.wasm` files depending on your frontend setup.*
@@ -25,7 +26,7 @@ npm install @vollcrypt/wasm
25
26
  ## Quick Start
26
27
 
27
28
  ```javascript
28
- import * as vollcrypt from '@vollcrypt/wasm';
29
+ import * as vollcrypt from '@vollcrypt/messages-wasm';
29
30
 
30
31
  // Generate an Ed25519 Identity Keypair
31
32
  const identity = vollcrypt.generate_ed25519_keypair();
@@ -52,6 +53,8 @@ For full API documentation, architecture details, and the high-performance Nativ
52
53
 
53
54
  ## License
54
55
 
55
- This project is licensed under the **GNU General Public License v3.0**.
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 use without the GPL copyleft requirement, please contact Berat Vural at [berat.vural.tr@gmail.com](mailto:berat.vural.tr@gmail.com).
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-wasm",
3
- "version": "0.2.0",
3
+ "version": "0.9.0",
4
4
  "description": "Cross-platform, quantum-resistant cryptography engine - WebAssembly binding",
5
5
  "type": "module",
6
6
  "main": "pkg/wasm.js",
@@ -37,5 +37,5 @@
37
37
  "e2ee"
38
38
  ],
39
39
  "author": "Berat Vural <berat.vural.tr@gmail.com>",
40
- "license": "GPL-3.0-only"
40
+ "license": "GPL-3.0-only OR LicenseRef-Commercial"
41
41
  }