Metadata-Version: 1.1
Name: encviewfuse
Version: 0.3.0.post1
Summary: A fuse implementation of an encrypted view on a given directory.
Home-page: https://github.com/seiferma/encviewfuse
Author: Stephan Seifermann
Author-email: seiferma@t-online.de
License: MIT
Description: encviewfuse
        ===========
        .. image:: https://secure.travis-ci.org/seiferma/encviewfuse.png
            :target: http://travis-ci.org/seiferma/encviewfuse
        
        Description
        -----------
        encviewfuse is a fuse filesystem that provides an encrypted view on a given directory. You can use it in conjunction with usual backup software without the requirement to save the files encrypted or provide additional space.
        
        Installation
        ------------
        The file system is available for Python 3 via pypi (encviewfuse.fuse).
        
        Usage
        -----
        ``encviewfuse_fs <source directory> <mount point> -o secret=<secret>,fileSalt=<fileSalt>,filenameSalt=<filenameSalt>``
        
        +-------------------------+-----------------------------------------------------------+
        | Option Value            | Meaning                                                   |
        +=========================+===========================================================+
        | ``source directory``    | The directory containing the files to be encrypted        |
        +-------------------------+-----------------------------------------------------------+
        | ``mount point``         | The mount point for the encrypted view                    |
        +-------------------------+-----------------------------------------------------------+
        | ``secret``              | The secret used for the encryption                        |
        +-------------------------+-----------------------------------------------------------+
        | ``fileSalt``            | The id of the file salt provider (filename | mtime)       |
        +-------------------------+-----------------------------------------------------------+
        | ``filenameSalt``        | The id of the filename salt provider (filename | mtime)   |
        +-------------------------+-----------------------------------------------------------+
        
        Instead of the ``secret`` option, you can also use the ``secretfile`` option to specify a file containing the secret.
Keywords: encryption fuse view
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: No Input/Output (Daemon)
Classifier: Intended Audience :: System Administrators
Classifier: Topic :: System :: Filesystems
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX :: BSD :: FreeBSD
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3 :: Only
