Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/lk-geimfari/parole
- Owner: lk-geimfari
- Created: 2018-02-08T19:22:25.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-08-22T16:29:40.000Z (over 4 years ago)
- Last Synced: 2025-01-12T04:10:03.443Z (26 days ago)
- Topics: erlang, gbt, gen-server, manager, otp, password
- Language: Erlang
- Homepage:
- Size: 29.3 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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).
ok6> parole:lookup(Resource).
true7> parole:get(Resource, decrypted).
<<"MyNotEncryptedPassword">>
```LICENSE
-------```
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004Copyright (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 MODIFICATION0. You just DO WHAT THE FUCK YOU WANT TO.
```