An open API service indexing awesome lists of open source software.

https://github.com/edouard-lopez/lesspass-powershell

LessPass is a stateless password manager, this is a PowerShell implementation of the CLI
https://github.com/edouard-lopez/lesspass-powershell

lesspass lesspass-cli powershell

Last synced: 11 months ago
JSON representation

LessPass is a stateless password manager, this is a PowerShell implementation of the CLI

Awesome Lists containing this project

README

          

> ##### ✋ Psst! Create [issue on the lesspass/lesspass](https://github.com/lesspass/lesspass/issues/new) repo as I will [merge](https://github.com/lesspass/lesspass/issues/407) into it.

# Lesspass-powershell [![Build Status](https://travis-ci.org/edouard-lopez/lesspass-powershell.svg?branch=master)](https://travis-ci.org/edouard-lopez/lesspass-powershell)

> LessPass computes the same password given the same a `Site`, `Login` and a `master password`
>
> Privacy by default, Works offline, No sync, Visual fingerprint :closed_lock_with_key::heart::eyes:

## Install

```powershell
PS> Install-Module -Name Lesspass
```

## Usage

```powershell
PS> Get-LessPass "Site" "Login" "masterpassword"
```

#### Help

```powershell
PS> Get-LessPass -?
```

#### Syntax

```powershell
Get-LessPass
-Site
-Login
-MasterPassword

[-Lowercase]
[-Uppercase]
[-Digits]
[-Symbols]
[-noLowercase]
[-noUppercase]
[-noDigits]
[-noSymbols]
[[-Length] ]
[[-Counter] ]

[-version]
[]
```

## Test

```make
make test
```