client software licensing server
git clone https://github.com/devfans/node-license-server.git
cd node-license-server
npm start
The licensing server will generate client software license to permit client software to run when software user trys to run it at the first time, and the license can be saved locally to be reused for the bound machine. The main flow should be like:
- License server adds a batch of license keys into the database, the keys can be encrypted strings by server RSA private key which will contains the informations including expiration time.
- Software holder issues license keys to software users.
- Client software should generate a unique ID of the client machine to identify the unique hardware, which can be achieved using modules like
machine-digest
, and post the key and machine uuid to license server. - License server binds the key with the machine uuid, and generate a license file with RSA private key.
- Client software saves the license file locally and verifys license with server's RSA public key. Client software can also set a daily timer to check the expiration of the key.
node-license-client is a nodejs implementation client module for node-license-server.
openssl genrsa -des3 -out private.pem 1024
openssl rsa -in private.pem -outform PEM -pubout -out public.pem