Metadata-Version: 1.1
Name: rsalette
Version: 0.0.0
Summary: A pure-Python 2+3 RSA verification library.
Home-page: http://bitbucket.org/dholth/rsalette/
Author: Daniel Holth
Author-email: dholth@fastmail.fm
License: MIT
Description: rsalette
        ========
        
        Compact pure-Python RSA verification.
        
        rsalette provides a compact, pure-Python 2+3, single file RSA verification
        library that is compatible with JSON Web Key.
        
        rsalette is alpha quality software.
        
        Usage::
        
        	import rsalette
        	verifier = rsalette.PublicKey.from_jwk({'kty':'RSA', 'e':'AQAB', 'n': ...})
        	verified_message = verifier.verify(message, signature)
        
        
        0.0.0
        =====
        - Initial version
Platform: UNKNOWN
Classifier: Topic :: Security :: Cryptography
