Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/lk-geimfari/parole

Simple and fast password manager based on gen_server and general balanced trees.
https://github.com/lk-geimfari/parole

erlang gbt gen-server manager otp password

Last synced: 17 days ago
JSON representation

Simple and fast password manager based on gen_server and general balanced trees.

Awesome Lists containing this project

README

        

![](https://raw.githubusercontent.com/lk-geimfari/parole/master/logo.png)

An OTP client-server application for local password managing based on **gen_server**.

Usage
-----

Run following command:

```
~ rebar3 build && rebar3 shell
```

and then you can use it, like this:

```erlang
Erlang/OTP 18 [erts-7.3] [source] [64-bit] [smp:4:4] [async-threads:10] [kernel-poll:false]

Eshell V7.3 (abort with ^G)

2> parole:start().
{ok,<0.40.0>}

3> Resource = <<"www.github.com">>.
<<"www.github.com">>

4> Password = <<"MyNotEncryptedPassword">>.
<<"MyNotEncryptedPassword">>

5> parole:add(Resource, Password).
ok

6> parole:lookup(Resource).
true

7> parole:get(Resource, decrypted).
<<"MyNotEncryptedPassword">>
```

LICENSE
-------

```
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004

Copyright (C) 2018 Likid Geimfari

Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.

DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

0. You just DO WHAT THE FUCK YOU WANT TO.

```