Metadata-Version: 2.1
Name: locationcrypto
Version: 1.0.5
Summary: Location based Cryptography uses location of the device in addition to the pass-phrase as key.
Home-page: https://github.com/harshildarji/locationcrypto
Author: Harshil Darji
Author-email: darjiharshil2994@gmail.com
License: UNKNOWN
Description: ### Location-based Cryptography
        #### Package published at: [PyPI](https://pypi.org/project/locationcrypto/)
        
        Location based cryptography uses location of the device in addition to pass-phrase as encryption/decryption key.
        
        #### Install:
        ```bash
        pip install locationcrypto
        ```
        
        #### Use:
        Create a python script, for example **`example.py`**:
        ```python
        import locationcrypto.crypt
        
        crypt
        ```
        Save and run:
        ```bash
        ❯❯❯ python3 example.py
        Waiting for location...
        Password: test
        Data: Harshil
        Encrypt/Decrypt [e/d]: e
        Jevujhk
        ```
        ```bash
        ❯❯❯ python3 example.py
        Waiting for location...
        Password: test
        Data: Jevujhk
        Encrypt/Decrypt [e/d]: d
        Harshil
        ```
        
        ---
        #### Author: [Harshil Darji](https://github.com/harshildarji)
        
        Thanks to [Atharv Attri](https://github.com/Atharv-Attri) for helping me publish this repository as a package.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
