Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 
 
Guillaume Vincent d66a896524 add .editorconfig and auto format 7 роки тому
dist Migrate from Browserify to Webpack 7 роки тому
example add .editorconfig and auto format 7 роки тому
src add .editorconfig and auto format 7 роки тому
tests add .editorconfig and auto format 7 роки тому
.editorconfig add .editorconfig and auto format 7 роки тому
.gitignore upgrade to node 6 LTS 8 роки тому
.travis.yml upgrade to node 6 LTS 8 роки тому
LICENSE change license from MIT to GNU GPLv3 8 роки тому
package.json Add husky to prevent commit without green tests 7 роки тому
readme.md fix 404 link 7 роки тому
webpack.config.js add .editorconfig and auto format 7 роки тому

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