Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jarrodmillman/accountman


https://github.com/jarrodmillman/accountman

Last synced: 9 days ago
JSON representation

Awesome Lists containing this project

README

        

.. -*- rest -*-
.. vim:syntax=rest

======================
Simple account manager
======================

AccountMan provides a command-line interface to store and retrieve
account information (i.e., url, name, password). Account information
is stored in a JSON file::

{
"acc1": {
"url": "http://www.bank.com",
"password": {
"salt": "4a704c50696c",
"cipherpasswd": "U2FsdGVkX19KcExQaWwAADphBGePaw4E6tlphf8SU0Y="
},
"name": "user1"
},
"acc2": {
"url": "http://www.mailinglist.org",
"password": {
"salt": "42694a363770",
"cipherpasswd": "U2FsdGVkX19CaUo2N3AAAEhG0zExx0jjMfzsyKkGyBo="
},
"name": "user1"
}
}

The source code can be found here:

http://github.com/jarrodmillman/accountman