Metadata-Version: 2.1
Name: llsmartcard-ph4
Version: 1.1.0
Summary: Module for easily interacting with smartcards.
Home-page: https://github.com/ph4r05/llsmartcard
Author: Chad Spensky
Author-email: chad.spensky@ll.mit.eduasd
Maintainer: Dusan Klinec
Maintainer-email: dusan.klinec@gmail.com
License: MIT
Description: ::
        
                     _      _          _____                      _    _____              _  
                    | |    | |        / ____|                    | |  / ____|            | | 
                    | |    | |  _____| (___  _ __ ___   __ _ _ __| |_| |     __ _ _ __ __| | 
                    | |    | | |______\___ \| '_ ` _ \ / _` | '__| __| |    / _` | '__/ _` | 
                    | |____| |____    ____) | | | | | | (_| | |  | |_| |___| (_| | | | (_| | 
                    |______|______|  |_____/|_| |_| |_|\__,_|_|   \__|\_____\__,_|_|  \__,_|
        
                            Authors: Chad Spensky (chad.spensky@ll.mit.edu)
                                       Hongyi Hu (hongyi.hu@ll.mit.edu)
        
        Contents
        ========
        
        -  examples/ Some example scripts on how to use the library to interact
           with various smartcards
        
        -  docs/ Contains some useful documents when working with smart cards
           that define some of the APDUs and RIDs.
        
        Install
        =======
        
        -  Install `pyDes <https://pypi.python.org/pypi/pyDes/>`__ python
           library
        
        -  Install `pyscard <http://pyscard.sourceforge.net/>`__ python library
        
        -  Install PC/SC >$ sudo apt-get install pcsc-tools pcscd
        
        -  To install all of these just run: >$ ./install\_dependencies.sh
        
        Usage
        =====
        
        -  For developing your own smart card application using llsmartcard, see
           template.py
        
        -  See ``examples/``
        
        Certificates
        ============
        
        This section discusses how to work with the certificates on the CAC.
        
        -  Extract Certificates python cac\_crypto.py -x test
        
        -  Working with certs (Referenced from
           `here <http://www.devco.net/archives/2006/02/13/public_-_private_key_encryption_using_openssl.php>`__).
        
        -  Encrypt >$ openssl pkeyutl -encrypt -in -pubin -inkey [input public
           key] -out [output file]
        
        -  Extract Public Key >$ openssl x509 -inform DER -pubkey -in [input
           certificate] > output.key
        
        -  Example using certs:
        
            $ echo "Hello World!" > input.txt
        
            $ python cac\_crypto.py -E -k test/cac/cac\_pki\_enc.pub -i
            input.txt -o input\_encrypted.ssl
        
            $ python cac\_crypto.py -D -i input\_encrypted.ssl -c KEY\_PKI\_ENC
            -o input\_decrypted.txt -p 77777777
        
        Notes
        =====
        
        -  Certificates are returned in gzipped form. > $ gunzip [cert.gz]
        
        -  Certificates are in DER form > $ openssl x509 -inform DER -in [cert]
           > $ openssl x509 -issuer -email -startdate -enddate -inform DER -in
           [cert] > $ openssl x509 -inform DER -noout -text -in [cert]
        
        Disclaimer
        ==========
        
        .. raw:: html
        
           <p align="center">
        
        This work is sponsored by the Defense Information Systems Agency under
        Air Force Contract #FA8721-05-C-0002. Opinions, interpretations,
        conclusions and recommendations are those of the author and are not
        necessarily endorsed by the United States Government. © 2015
        Massachusetts Institute of Technology
        
        .. raw:: html
        
           </p>
        
        
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Security
Requires-Python: >=3.5
Provides-Extra: dev
