Metadata-Version: 2.1
Name: sicsearch
Version: 0.2.1a1
Summary: Safe in Cloud DB Search
Home-page: https://github.com/ironsigma/sicsearch
Author: Juan D Frias
Author-email: juandfrias@gmail.com
License: MIT
Download-URL: https://github.com/ironsigma/sicsearch/archive/v0.2.1-alpha.1.tar.gz
Keywords: SIC,SafeInCloud,Decryption,Password
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console :: Curses
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Topic :: Security
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation
Requires-Python: >=3.6
Requires-Dist: passlib
Requires-Dist: pyperclip
Requires-Dist: pycryptodome

Safe in Cloud DB Search
=======================

This utility make it easy to search a previously created *Safe in Cloud*
database. At this point this is just a quick hack to use *SIC* in a Linux
environment.

Open the database
-----------------

Use the installed script to open the specified database. The script will prompt
for your database password and open the database.

.. code-block:: bash

    sicsearch ~/SafeInCloud.db


Searching
---------

Fuzzy matching
''''''''''''''

At the blue ``>`` prompt start typing your search term. The script will use a
fuzzy match algorithm to filter out the entries as you type.

.. image:: https://github.com/ironsigma/sicsearch/raw/master/res/filtering.png
   :alt: Searching

Content matching
''''''''''''''''

If your query is three or more characters long the script will also search
inside each entry and display which field matched in parenthesis.

.. image:: https://github.com/ironsigma/sicsearch/raw/master/res/content.png
   :alt: Content Match

Inactivity
''''''''''

If there is no activity (key presses) in three minutes, the script will
shutdown to prevent keeping the database open.

Keys
''''

Use the following keys while in search mode:

- ``ALT-X``, ``ALT-Q`` - Exit
- ``ALT-H``, ``ALT-BACKSPACE`` - Clear the search field
- ``ALT-K``, ``Up`` - Move selection up
- ``ALT-J`` ``Down`` - Move selection down
- ``Enter``, ``Return`` - View selected entry



View mode
---------

Once an entry is selected, all fields in the card will be displayed.

.. image:: https://github.com/ironsigma/sicsearch/raw/master/res/visa.png
   :alt: Visa Card

Keys
''''

Use the following keys in view mode:

- ``X`` - Exit script
- ``Q`` - Return to *Search* mode
- ``K`` - Move field selection up
- ``J`` - Move field selection down
- ``Enter``, ``Return`` - Open URL or Copy selected field to clipboard

To Do
-----

- Change/customize key-bindings
- Toggle masked fields



