Metadata-Version: 2.1
Name: pypwsafev3
Version: 0.0.3
Summary: A pure-Python library (based on https://github.com/ronys/pypwsafe and it's forks) that can read and write Password Safe v3 files, originally by Paulson McIntyre http://pwsafe.org
Home-page: https://github.com/voytecPL/pypwsafev3
Author: Wojciech Jakubas
Author-email: wojciech.jakubas@gmail.com
License: UNKNOWN
Description: Introduction
        ============
        A pure-Python library that can read and write Password Safe v3 
        files. It includes full support for almost all current Password
        Safe v3 database headers and record headers. 
        
        History
        =======
        The library was initially written by Paulson McIntyre for
        Symantec in 2009. It was later released by Symantec under the 
        GPLv2 in 2011. Changes and updates have been made since by Paulson
        McIntyre (GpMidi), Evan Deaubl (evandeaubl), and Sean Perry (shaleh).
        Rony Shapiro maintains the project page and acts as gate keeper
        for new patches.   
        
        Known Issues
        ============ 
         1. Lack of documentation
         2. Unit tests are out-of-date
         3. There MAY be an issue with the order that NonDefaultPrefsHeader serializes preferences for HMAC validation in pypwsafe. Although the library validates HMACs fine at the moment, so who knows. 
         	 
        Dependencies
        ============
         1. pycryptoplus
         2. pycryptodome
        
        Install Instructions
        ====================
        
        RHEL/CentOS
        -----------
         1. Install libmcrypt and it's dev package along with the Python dev package: 
        	yum install libmcrypt-devel libmcrypt python-devel
        	These packages are needed by the installer for python-mcrypt
         2. Install the standard Linux development tools. For RHEL/CentOS 5 and 6, `yum groupinstall 'Development tools'` can be used if your YUM repos have group information. 
         3. Use Pip or easy install to install python-mcrypt, hashlib, and pycrypto
         4. Run the setup script
        	python setup.py install
         5. Test that the module loads
        	python -c "import pypwsafe"
        
        Development Setup Instructions
        ------------------------------
        FIXME: Fill this in
        
        FAQ
        ===
        ### Where can I find details on the Password Safe file format?
        The format spec is kept in the Password Safe project's SVN repo. Go 
        to the password safe code base and check in /pwsafe/pwsafe/docs/formatV3.txt.
        As of today, it can be found [here](http://sourceforge.net/p/passwordsafe/code/5210/tree/trunk/pwsafe/pwsafe/docs/) 
        	
        TODO
        ====
         1. Add support for using a pure-python TwoFish algorithm if mcrypt doesn't work.
            http://code.google.com/p/python-keysafe/source/browse/crypto/twofish.py
            http://www.bjrn.se/code/twofishpy.txt 
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
