Metadata-Version: 2.1
Name: piencrypt
Version: 0.6.8.5
Summary: Encrypt your crucial data into Image file
Home-page: UNKNOWN
Author: Throttlerz (Siddhartha Roy)
Author-email: <sid86harth@gmail.com>
License: UNKNOWN
Keywords: python,image processing,encrypt,decrypt,hide messages,data store
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE


## PiEncrypt



### `pip install piencrypt`



> ### Encrypt your crucial data into Image file.



<br>



### Minimal app



```python

from piencrypt import pie



r = pie.PiEncrypt('pic.png')

r.get_data()



r.hide_data("Hello my name is Sid")



read = r.read_data()



r.revert()

print(read)

```



<br>



### Step 1



 #### Initialize and create a backup of the picture as bytes 

 

 ```python

    r = pie.PiEncrypt('pic.png')



    r.get_data()

```

> *pic.jpg should be replaced by your picture name*



### Step 2



#### Hide the disired data into the picture 

 

 ```python

    r.hide_data("Hello my name is Sid")

```



### Step 3



 #### Read the hidden data from the picture

 

 ```python    

   read = r.read_data()



   print(read)

```



### Step 4



 #### Revert the picture from the backup file

 

 ```python

    r.revert()

```



<br>



https://pypi.org/project/piencrypt/



## Repeat !



