Metadata-Version: 1.1
Name: ykpers-cffi
Version: 0.13.0.0a1.dev2
Summary: libykpers bindings for python via cffi
Home-page: https://github.com/habnabit/ykpers-cffi
Author: Aaron Gallagher
Author-email: _@habnab.it
License: ISC
Description: =============
         ykpers-cffi
        =============
        
        
        Extremely small bindings to `libykpers`_ for communicating with a `YubiKey`_
        over USB. The features are currently "whatever I need at the time." Feel free
        to make suggestions about what to do next. Here's approximately what it can do
        at the moment::
        
          from ykpers import YubiKey
        
          yk = YubiKey.open_first_key()
          print 'yubikey {0.versionMajor}.{0.versionMinor}'.format(yk.get_status())
          print 'slot 1:', yk.hmac_challenge_response('hi').encode('hex')
          print 'slot 2:', yk.hmac_challenge_response('hi', slot=2).encode('hex')
        
        
        Why not `python-yubico`_?
        =========================
        
        It only runs on linux and reimplements what libykpers already does.
        
        
        .. _libykpers: https://github.com/Yubico/yubikey-personalization
        .. _YubiKey: http://www.yubico.com/
        .. _python-yubico: https://github.com/Yubico/python-yubico
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Security
Classifier: Topic :: Utilities
