Skip to content

Commit

Permalink
v0.1.6
Browse files Browse the repository at this point in the history
- Support for UTF16-encoded RDN value.
- Support for embedded certificate validation.

Changelog: v0.1.5...v0.1.6
  • Loading branch information
REinject committed Oct 9, 2024
1 parent ba7a291 commit 0c17952
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
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 = "pe-sign"
version = "0.1.5"
version = "0.1.6"
edition = "2021"
authors = ["REinject"]
homepage = "https://github.com/0xlane/pe-sign"
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Alternatively, if you have `Cargo` installed, you can easily install it by runni
### Usage

```powershell
pe-sign (0.1.5) - REinject
pe-sign (0.1.6) - REinject
A tool for parsing and verifing PE file signatures
Repository: https://github.com/0xlane/pe-sign
Expand Down Expand Up @@ -222,6 +222,7 @@ Arguments:
Options:
--no-check-time Ignore certificate validity time
--ca-file <FILE> Trusted certificates file
--embed Verify embedded certificate
-h, --help Print help
```

Expand Down
3 changes: 2 additions & 1 deletion README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
### 使用说明

```powershell
pe-sign (0.1.5) - REinject
pe-sign (0.1.6) - REinject
A tool for parsing and verifing PE file signatures
Repository: https://github.com/0xlane/pe-sign
Expand Down Expand Up @@ -222,6 +222,7 @@ Arguments:
Options:
--no-check-time Ignore certificate validity time
--ca-file <FILE> Trusted certificates file
--embed Verify embedded certificate
-h, --help Print help
```

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ fn cli() -> clap::Command {
use clap::{arg, value_parser, Command};

Command::new("pe-sign")
.version("0.1.5")
.version("0.1.6")
.about("A tool for parsing and verifing PE file signatures\n\nRepository: https://github.com/0xlane/pe-sign\n")
.author("REinject")
.help_template("{name} ({version}) - {author}\n{about}\n{all-args}")
Expand Down

0 comments on commit 0c17952

Please sign in to comment.