Metadata-Version: 2.0
Name: cryptarchive
Version: 0.1.5
Summary: encrypted storage server and client
Home-page: https://github.com/bennr01/cryptarchive/
Author: bennr01
Author-email: benjamin99.vogt@web.de
License: AGPLv3
Description-Content-Type: UNKNOWN
Keywords: crypto server data storage network CLI
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Topic :: Security :: Cryptography
Classifier: Programming Language :: Python
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Requires-Dist: twisted
Requires-Dist: pycryptodome
Requires-Dist: zope.interface

# Cryptarchive
*Encrypted network storage*
# Features
- standalone server
- client libraries for socket and twisted
- no cleartext usernames stored (usernames are stored hashed)
- auth-challenge makes password transfer to server unneccessary (challenge will be solved localy)
- filenames and directory sturcture are stored in an encrypted file.
- command line tool

# Installation

*`sudo` may be required.*

**From pypi:**
```bash
pip install cryptarchive
```

**From source:**
```bash
git clone https://github.com/bennr01/cryptarchive.git
cd cryptarchive
python setup.py install
```

# Server
To start the server, run `cryptarchive-server <datadir>`
For more arguments, please see `cryptarchive-server --help`.

# Client
To view help on the command-line client, see `cryptarchive-client --help`.


