Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 
Guillaume Vincent 91decc688f build v7.0.1 il y a 7 ans
dist build v7.0.1 il y a 7 ans
example Build minified js file il y a 7 ans
src Use webcrypto only for browser il y a 7 ans
test Use webcrypto only for browser il y a 7 ans
.editorconfig add .editorconfig and auto format il y a 7 ans
.gitignore upgrade to node 6 LTS il y a 8 ans
.travis.yml refactor core to use browserify il y a 7 ans
LICENSE change license from MIT to GNU GPLv3 il y a 8 ans
package.json Use webcrypto only for browser il y a 7 ans
readme.md fix 404 link il y a 7 ans

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