Metadata-Version: 2.1
Name: pkelib
Version: 1.0.0
Summary: PKE library
Home-page: https://github.com/Madff386/pkelib
Author: Mdaff169
Author-email: dehersbach@gmail.com
License: UNKNOWN
Description: # PKElib
        Library for public key encryption, use `var = pke(message)` to create a pke object.  
        Then you can use the `var.encrypt()` and `var.decrypt()` methods to encrypt and decrypt the message.  
        By deafault they will encyrpt and decrypt with default keys, to do it with different keys just pass them to the `var.encrypt()` and `var.decrypt()` methods.  
        eg:  
         - `var.encrypt(encrypt_key, main_key)`   
         - `var.decrypt(decrypt_key, main_key)`
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
