Skip to content

Commit 0c17952

Browse files
author
REinject
committed
v0.1.6
- Support for UTF16-encoded RDN value. - Support for embedded certificate validation. Changelog: v0.1.5...v0.1.6
1 parent ba7a291 commit 0c17952

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pe-sign"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
edition = "2021"
55
authors = ["REinject"]
66
homepage = "https://github.com/0xlane/pe-sign"

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Alternatively, if you have `Cargo` installed, you can easily install it by runni
3333
### Usage
3434

3535
```powershell
36-
pe-sign (0.1.5) - REinject
36+
pe-sign (0.1.6) - REinject
3737
A tool for parsing and verifing PE file signatures
3838
3939
Repository: https://github.com/0xlane/pe-sign
@@ -222,6 +222,7 @@ Arguments:
222222
Options:
223223
--no-check-time Ignore certificate validity time
224224
--ca-file <FILE> Trusted certificates file
225+
--embed Verify embedded certificate
225226
-h, --help Print help
226227
```
227228

README_zh.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
### 使用说明
3434

3535
```powershell
36-
pe-sign (0.1.5) - REinject
36+
pe-sign (0.1.6) - REinject
3737
A tool for parsing and verifing PE file signatures
3838
3939
Repository: https://github.com/0xlane/pe-sign
@@ -222,6 +222,7 @@ Arguments:
222222
Options:
223223
--no-check-time Ignore certificate validity time
224224
--ca-file <FILE> Trusted certificates file
225+
--embed Verify embedded certificate
225226
-h, --help Print help
226227
```
227228

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ fn cli() -> clap::Command {
1313
use clap::{arg, value_parser, Command};
1414

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

0 commit comments

Comments
 (0)