Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 
Guillaume Vincent 8f4a6855d1 add license in readme 8 anni fa
tests babel ES6 code 8 anni fa
.gitignore simplify API for password creation 8 anni fa
.npmignore version 1.0.0 on npm 8 anni fa
.travis.yml version 1.0.0 on npm 8 anni fa
ISSUE_TEMPLATE add issue template 8 anni fa
index.js fix import error 8 anni fa
license standardization of sub modules 8 anni fa
package.json 4.0.4 8 anni fa
readme.md add license in readme 8 anni fa

readme.md

Build Status

LessPass Core

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

Requirements

  • node v4.6.x

Install

npm install lesspass

Usage

import LessPass from 'lesspass';
    
const site = 'lesspass.com';
const login = 'contact@lesspass.com';
const masterPassword = 'password';
const options = {
    counter: 1,
    length: 12,
    lowercase: true,
    uppercase: true,
    numbers: true,
    symbols: true
};
LessPass.encryptLogin(login, masterPassword)
    .then(encryptedLogin => {
        var generatedPassword = LessPass.renderPassword(encryptedLogin, site, options);
        console.log(generatedPassword); //azYS7,olOL2]
    });

see tests/api.tests.js for more examples

Tests

npm test

License

MIT © Guillaume Vincent

LessPass project