byteskode key generator utility
$ npm install --save byteskode-keygen
var keygen = require('byteskode-keygen');
//generate key
keygen.generate(<payload>, function(error, key){
...
});
//verify key
keygen.verify(<key>, <payload>, function(error, isValid){
...
});
Internal configuration of byteskode-keygen
can be altered by set a value to a specific options. The structure of the options is
{
encryption: 'md5', //encryption algorithm
encoding: 'hex', //encoding format
keyLength: 20, //default key length
chunkSize: 4, //chuck of keys to be formatted
format: true, //format generated key
separator: '-', //key separator
secret: undefined //encyption key default to machine id
}
To alter any configuration just pass your option overrides as
var keygen = require('byteskode-keygen');
//change encryption algorithm
keygen.options.encryption = 'sha256';
To restore default settings
var keygen = require('byteskode-keygen');
keygen.restore();
The structure of the key generated is
{
prefix: 'E43427',
key: '5540-7479-75D9-D0F9-2C6F',
suffix: 'D2639D',
secret: 'be9d373a4e73de831216c228cb729c71'
}
Where
prefix
- Part of the key extracted to be used as prefix in verificationkey
- The actual key with default length of 20 characterssuffix
- Part of the key extracted to be used as suffix in verificationsecret
- A secret key used in generating a key
-
Clone this repository
-
Install all development dependencies
$ npm install
- Then run test
$ npm test
- Hash Function
- Product Key
- Product Activation
- Digital Rights Management
- Keygen
- Software License Server
It will be nice, if you open an issue first so that we can know what is going on, then, fork this repo and push in your ideas. Do not forget to add a bit of test(s) of what value you adding.
The MIT License (MIT)
Copyright (c) 2015 byteskode & Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.