Metadata-Version: 2.1
Name: sipher
Version: 1.0.1
Summary: To encrypt and decrypt message.
Author-email: srg <srg.code@pm.me>
License: Apache License, Version 2.0
Project-URL: Homepage, https://github.com/codesrg/sipher
Project-URL: Bug Tracker, https://github.com/codesrg/sipher/issues
Keywords: sipher,cipher,morse,encrypt,decrypt
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Sipher

[![PyPI](https://img.shields.io/pypi/v/sipher)](https://pypi.python.org/pypi/sipher)
[![Pypi - License](https://img.shields.io/github/license/codesrg/sipher)](https://github.com/codesrg/sipher/blob/main/LICENSE)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/sipher?color=red)](https://pypi.python.org/pypi/sipher)

To encrypt and decrypt message. 

Only morse encryption/decryption is supported.

## Installation

`pip install -U sipher`

## Usage

```
usage: sipher [options]

optional arguments:
  -h, --help     show this help message and exit
  -v, --version  show version number and exit.

to encrypt/decrypt message:
  data           data to encrypt/decrypt
  -e, --encrypt  to encrypt message
  -d, --decrypt  to decrypt message
  -c, --copy     to copy encrypted/decrypted message to clipboard (default :
                 False)
  -s, --store    to store encrypted/decrypted message as text file (default :
                 False)
  -p, --path     path to store encrypted/decrypted message
```

###
To encrypt a text and copy it to clipboard.
```
$ sipher data --encrypt --copy
Encrypted message copied to clipboard.
```
###

To decrypt a cipher and store it as text file.

```
$ sipher "-.. .- - .- " --decrypt --store
Encrypted message copied to clipboard.
Encrypted message stored in 'path_given'.
```

## Issues:

If you encounter any problems, please file an [issue](https://github.com/codesrg/sipher/issues) along with a detailed description.
