From f0c92f77a2785e934d00f39b6de325f05558c0f1 Mon Sep 17 00:00:00 2001 From: brent s Date: Tue, 18 Dec 2018 07:27:27 -0500 Subject: [PATCH] gorram it --- README.html | 35 ----------------------------------- README.md | 1 + 2 files changed, 1 insertion(+), 35 deletions(-) delete mode 100644 README.html diff --git a/README.html b/README.html deleted file mode 100644 index d30220e..0000000 --- a/README.html +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - -

Certparser

- -

What is it?

- -

Certparser is a fairly small module that will parse an X.509 certificate (commonly referred to as “HTTPS certificates”, “SSL certificates” (even though proper modern implementations should be using TLS), etc.), either locally as a file (or input stream, etc.) or remote (across a small subset of protocols which will expand with time). X.509 is a complex thing, so if I missed part of it let me know! (RFC numbers and sections very welcome.)

- -

It can be invoked directly as a command:

- -

bash -./certparser.py -

- -

(See ./certparser.py --help for more information on usage.)

- -

Or as a python module:

- -

```python -import certparser

- -

parser = certparser.CertParse(‘square-r00t.net’) -print(parser.cert) # prints the fetched certificate -print(parser.certinfo) # prints the parsed certificate information -```

- -

(See pydoc certparser for more information on usage.)

- - diff --git a/README.md b/README.md index 45753a5..1867ccd 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # Certparser +NOTE: CURRENTLY THIS IS NON-FUNCTIONAL. It is being restructured for packaging in PyPI. If you need it, the standalone version remains [in OpTools](https://git.square-r00t.net/OpTools/tree/ssl_tls/certparser.py) for now. ## What is it? Certparser is a fairly small module that will parse an X.509 certificate. These are commonly referred to as "HTTPS certificates", "SSL certificates" (even though proper modern implementations should be using TLS), etc.