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
- Host: GitHub
- URL: https://github.com/edouard-lopez/lesspass-powershell
- Owner: edouard-lopez
- License: gpl-3.0
- Created: 2019-01-04T17:02:47.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-22T08:04:23.000Z (over 6 years ago)
- Last Synced: 2025-03-20T12:54:40.676Z (11 months ago)
- Topics: lesspass, lesspass-cli, powershell
- Language: PowerShell
- Homepage: https://www.powershellgallery.com/packages/Lesspass/
- Size: 147 KB
- Stars: 10
- Watchers: 2
- Forks: 2
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 [](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
```