No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 
Guillaume Vincent 91decc688f build v7.0.1 hace 7 años
dist build v7.0.1 hace 7 años
example Build minified js file hace 7 años
src Use webcrypto only for browser hace 7 años
test Use webcrypto only for browser hace 7 años
.editorconfig add .editorconfig and auto format hace 7 años
.gitignore upgrade to node 6 LTS hace 8 años
.travis.yml refactor core to use browserify hace 7 años
LICENSE change license from MIT to GNU GPLv3 hace 8 años
package.json Use webcrypto only for browser hace 7 años
readme.md fix 404 link hace 7 años

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

const site = 'lesspass.com';
const login = 'contact@lesspass.com';
const masterPassword = 'password';
const passwordProfile = {
    lowercase: true,
    uppercase: true,
    numbers: true,
    symbols: true,
    length: 16,
    counter: 1,
    version: 2
};
LessPass.generatePassword(site, login, masterPassword, passwordProfile)
    .then(function (generatedPassword) {
        assert.equal(generatedPassword, '\\g-A1-.OHEwrXjT#');
        console.log('generated password ok');
    });

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