Metadata-Version: 2.0
Name: sslcheck
Version: 1.0.4
Summary: A simple command line SSL validator
Home-page: http://gitlab.com/radek-sprta/sslcheck
Author: Radek Sprta
Author-email: mail@radeksprta.eu
License: MIT License
Download-URL: https://gitlab.com/radek-sprta/sslcheck/repository/archive.tar.gz?ref=master
Description-Content-Type: UNKNOWN
Keywords: sslcheck
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: POSIX :: Linux
Classifier: Natural Language :: English
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.5
Requires-Dist: certifi
Requires-Dist: pyopenssl


# SSLCheck [![PyPI version](https://badge.fury.io/py/sslcheck.svg)](https://badge.fury.io/py/sslcheck) 

A simple command line SSL validator

## Features

- Validate SSL Certificate for host.
- Allows to specify server, in case DNS records do not point to the server.
- Use any port (443, 8443, 993 etc.)

## Installation

SSLCheck requires Python 3 to run.

**Python package**

You can easily install SSLCheck using pip:

`pip3 install sslcheck`

**Manual**

Alternatively, to get the latest development version, you can clone this repository and then manually install it:

```
git clone git@gitlab.com:radek-sprta/sslcheck.git
cd sslcheck
python3 setup.py install
```

## Usage

Simply run SSLCheck with hostname as argument:

`sslcheck radeksprta.eu`

SSLCheck takes two optional arguments:
- `--server`/`-s` - Server to connect to.
- `--port`/`-s` - Specify port, i.e. 993 for encrypted IMAP.

## Contributing
For information on how to contribute to the project, please check the [Contributor's Guide][contributing]

## Contact
[mail@radeksprta.eu](mailto:mail@radeksprta.eu)

[incoming+radek-sprta/sslcheck@gitlab.com](incoming+radek-sprta/sslcheck@gitlab.com)

## License
MIT License

## Credits

This package was created with [Cookiecutter][cookiecutter] and the [python-cookiecutter][python-cookiecutter] project template.

[contributing]: https://gitlab.com/radek-sprta/sslcheck/blob/master/CONTRIBUTING.md
[cookiecutter]: https://github.com/audreyr/cookiecutter
[documentation]: https://radek-sprta.gitlab.io/sslcheck
[python-cookiecutter]: https://gitlab.com/radek-sprta/python-cookiecutter


