Metadata-Version: 2.1
Name: SR29
Version: 1.0.3
Summary: The SR29 encode and decode
Author: Mame29
License: Apache License 2.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: NOTICE

Description
===========
  this program for protect your file or script with encode SR29

INSTALL
-------
  instaling using pip
  ```sh
  pip install SR29
  ```

# Python
  ## for encode
  ```python
  import sr29
  encode = sr29.encrypt('string', 'password', salt='I Love You').hexdigest()
  print(encode)
  ```

  ## for decode
  ```python
  decode = sr29.decrypt(encode, 'password', salt='I Love You')
  print(decode)
  ```
# Program Script
  ```sh
  $ SR29 fileIn.txt -o fileOut.txt -p Your_Password -s "I Love Python" --progress
  ```
