Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 
Guillaume Vincent ceced29113 add generatePassword v2 method há 8 anos
example remove ES6 code há 8 anos
lib add phantomjs to fix error on travis há 8 anos
src add generatePassword v2 method há 8 anos
tests add generatePassword v2 method há 8 anos
.gitignore upgrade to node 6 LTS há 8 anos
.travis.yml upgrade to node 6 LTS há 8 anos
LICENSE change license from MIT to GNU GPLv3 há 8 anos
gulpfile.js remove ES6 code há 8 anos
index.js add generatePassword v2 method há 8 anos
package.json add render Password tests há 8 anos
readme.md update documentation há 8 anos
webcrypto.js merge webcrypto há 8 anos

readme.md

Build Status

core library for LessPass password manager in javascript used to generate unique password.

Requirements

  • node LTS v6

Install

npm install lesspass

Usage

var LessPass = require('lesspass');

var site = 'lesspass.com';
var login = 'contact@lesspass.com';
var masterPassword = 'password';
var options = {
    counter: 1,
    length: 12,
    lowercase: true,
    uppercase: true,
    numbers: true,
    symbols: true,
    template: 'vcVCns'
};

LessPass.encryptLogin(login, masterPassword).then(encryptedLogin => {
    LessPass.renderPassword(encryptedLogin, site, options).then(generatedPassword => {
         console.log(generatedPassword); //azYS7,olOL2]
    });
});

see tests/api.tests.js for more examples

Tests

npm test

License

This project is licensed under the terms of the GNU GPLv3.

Issues

report issues on LessPass project