Metadata-Version: 2.1
Name: obscura
Version: 0.1.0
Summary: Symmetric file encryption with Argon2-based passphrases
Project-URL: Homepage, https://github.com/jocke-l/obscura
Project-URL: Bug Tracker, https://github.com/jocke-l/obscura/issues
Project-URL: Source, https://github.com/jocke-l/obscura
Author-email: Joakim Saario <saario.joakim@gmail.com>
License-File: LICENSE.md
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Security :: Cryptography
Requires-Python: >=3.8
Requires-Dist: argon2-cffi
Requires-Dist: cryptography
Description-Content-Type: text/markdown

# obscura

## Example

```shell
$ obscura <(echo 'secret snowflake') > secret.enc
Password:
$ obscura -d secret.enc
Password:
secret snowflake
```

## Install

### pip

```shell
$ pip install obscura
```

### Arch Linux

There is an AUR package available here:
https://aur.archlinux.org/packages/obscura

If you do not know how to install AUR packages on Arch Linux, please consult
the [wiki](https://wiki.archlinux.org/title/Arch_User_Repository)
