Skip to content

Commit

Permalink
v0.1.4
Browse files Browse the repository at this point in the history
- Fix calc authenticode with malformed pe header size.
- Fix the issue with certificate chain verification when intermediate certificates are stored in the trusted CA certificate store.

Changelog: v0.1.3...v0.1.4
  • Loading branch information
REinject committed Sep 12, 2024
1 parent e88b76a commit 8fca57f
Show file tree
Hide file tree
Showing 5 changed files with 5 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.3"
version = "0.1.4"
edition = "2021"
authors = ["REinject"]
homepage = "https://github.com/0xlane/pe-sign"
Expand Down
2 changes: 1 addition & 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.3) - REinject
pe-sign (0.1.4) - REinject
A tool for parsing and verifing PE file signatures
Repository: https://github.com/0xlane/pe-sign
Expand Down
2 changes: 1 addition & 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.3) - REinject
pe-sign (0.1.4) - REinject
A tool for parsing and verifing PE file signatures
Repository: https://github.com/0xlane/pe-sign
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.3")
.version("0.1.4")
.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 8fca57f

Please sign in to comment.