GT2/GT2-iOS/node_modules/crypto-token
Ren Ren Juan 30eef7d036 correct tree err 2018-02-12 17:26:06 +00:00
..
lib correct tree err 2018-02-12 17:26:06 +00:00
test correct tree err 2018-02-12 17:26:06 +00:00
.npmignore correct tree err 2018-02-12 17:26:06 +00:00
History.md correct tree err 2018-02-12 17:26:06 +00:00
Makefile correct tree err 2018-02-12 17:26:06 +00:00
Readme.md correct tree err 2018-02-12 17:26:06 +00:00
package.json correct tree err 2018-02-12 17:26:06 +00:00

Readme.md

crypto-token

Creates a cryptographically secure token which is unguessable, inspired by uid2.

Installation

$ npm install crypto-token

Quickstart

var token = require('crypto-token');

// sync

var t = token(); // 'jkwT1GzLbn'

// or async

token(function(err, res){
  console.log(res); // 'sXLWkN4vMG'
});

// of a custom `length`

token(32); // 'Rc0Mta5BW7X5ULYWq6QmnIqwVCPAsZKG'

Usage

token([length], [fn])

Returns a token of length characters, will call back with fn or return directly depending on whether generation is synchronous or asynchronous

License

The MIT License

Copyright © 2014, Segment.io <friends@segment.io>

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.