Metadata-Version: 2.1
Name: yuriko
Version: 0.0.4
Summary: Encrypted notes
Home-page: https://github.com/nanvel/yuriko
Author: Oleksandr Polieno
Author-email: polyenoom@gmail.com
License: The MIT License
Keywords: encrypted,notes
Platform: OS Independent
License-File: LICENSE

yuriko
======

Encrypted notes.

DISCLAIMER:
use it on your own risk,
authors are not responsible for any vulnerability may lead to a leak of sensitive data or loss of data.
Please make sure your password is strong enough.

Setup
-----

.. code-block:: bash

    pip install yuriko

Set environment variable `YURIKO_DB_PATH` to path to where the database will be located
(it can be created with `init` if not exist).

One way is to use `~/.bash_profile`:

.. code-block:: bash

    vim ~/.bash_profile
    // add `export YURIKO_DB_PATH=/some/path`
    source ~/.bash_profile

Also there is `YURIKO_PASSWORD_SUFFIX` environment variable.
AES key = `(password entered + YURIKO_PASSWORD_SUFFIX)[:16]`, so password to enter can be a bit shorter.

Usage
-----

.. code-block:: bash

    yuriko init
    yuriko search <q prefix>
    yuriko open <key>
    yuriko del <key>
    yuriko password <size>  # password generator


