Skip to content

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

License

Notifications You must be signed in to change notification settings

drylikov/password_parole

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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/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">>

About

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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages