Metadata-Version: 2.1
Name: kan-secret-storage
Version: 0.1.4
Summary: Python Secret Storage package
Home-page: https://github.com/kansoftware/secret_storage
Author: Andrew KAN
Author-email: kan@kansoftware.ru
License: GPL-3
Description: # secret_storage
        ## Python Secret Storage package
        Secret data is encrypted using your public RSA-key and stored in the ".store" folder. 
        The keys should be located in the "/.ssh/" folder.
        For decryption, a secret key is used from the same folder. 
        Data must be a string.
        
        ## Install
        ```bash
        pip install kan_secret_storage
        ```
        
        ## Usage
        ```python
        import kan_secret_storage.main as ss
        
        message = 'Hello Blablacode.ru!'
        ss.storedata("message", message.encode("utf-8"))
        message1 = ss.getdata("message")
        ```
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
