Skip to content

Commit

Permalink
chore: release v0.0.2 (#43)
Browse files Browse the repository at this point in the history
* chore: release

Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* docs: update changelog

---------

Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Rob Ede <[email protected]>
  • Loading branch information
github-actions[bot] and robjtede authored Nov 5, 2023
1 parent 0824399 commit 0f1c652
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Changelog

## 0.0.2

### Features

- Add support for local files and stdin.

### Fixes

- Print serial number correctly.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "inspect-cert-chain"
version = "0.0.1"
version = "0.0.2"
edition = "2021"

[dependencies]
Expand Down
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,28 @@
# Usage

From remote host:

```console
inspect-cert-chain --host <hostname>
```

From chain file:

```console
inspect-cert-chain --file <path>
```

From stdin:

```console
cargo run -- <hostname>
cat <path> | inspect-cert-chain --file -
```

# Roadmap

- [x] OpenSSL-like text info
- [x] fetch certificate from URL
- [x] interpret more standard X.509 extensions
- [ ] option to read local chain files
- [x] option to read local chain files
- [ ] determine chain validity

0 comments on commit 0f1c652

Please sign in to comment.