https://github.com/pilotmoon/aquatic-prime
Generate AquaticPrime license keys
https://github.com/pilotmoon/aquatic-prime
Last synced: over 1 year ago
JSON representation
Generate AquaticPrime license keys
- Host: GitHub
- URL: https://github.com/pilotmoon/aquatic-prime
- Owner: pilotmoon
- Created: 2023-02-15T17:09:27.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-08T13:56:42.000Z (over 2 years ago)
- Last Synced: 2025-03-20T21:17:38.784Z (over 1 year ago)
- Language: JavaScript
- Size: 188 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AquaticPrime for node
A node.js module to generate AquaticPrime-compatible license keys.
```shell-script
npm install @pilotmoon/aquatic-prime
```
```typescript
import { AquaticPrime } from "@pilotmoon/aquatic-prime";
const aqp = new AquaticPrime({
publicKey: "",
privateKey: "",
keyFormat: "base64", // "hex" is allowed too
});
// generate license plist
const { signedPlist } = aqp.generateLicense({
"Name": "Foo",
"Date": "2022-02-01",
"AbritraryWhatever": "Dingus",
});
```