-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
24 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
[package] | ||
name = "zipsign" | ||
description = "Sign a file with an ed25519 signing key" | ||
description = "Sign and verify `.zip` and `.tar.gz` files with an ed25519 signing key" | ||
version = "0.1.0-a.0" | ||
edition = "2021" | ||
authors = ["René Kijewski <[email protected]>"] | ||
license = "MIT OR Apache-2.0 WITH LLVM-exception" | ||
repository = "https://github.com/Kijewski/zipsign" | ||
license = "Apache-2.0 WITH LLVM-exception" | ||
|
||
[workspace] | ||
resolver = "2" | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
[package] | ||
name = "zipsign-api" | ||
description = "Verify files signed with `zipsign`" | ||
description = "Sign and verify `.zip` and `.tar.gz` files with an ed25519 signing key" | ||
version = "0.1.0-a.0" | ||
edition = "2021" | ||
authors = ["René Kijewski <[email protected]>"] | ||
license = "MIT OR Apache-2.0 WITH LLVM-exception" | ||
repository = "https://github.com/Kijewski/zipsign" | ||
license = "Apache-2.0 WITH LLVM-exception" | ||
|
||
[dependencies] | ||
base64 = { workspace = true, optional = true } | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,11 @@ | ||
## zipsign-api: Verify ed25519ph signed files | ||
## zipsign-api | ||
|
||
Sign and verify `.zip` and `.tar.gz` files with an ed25519 signing key. | ||
|
||
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/Kijewski/zipsign/ci.yml?branch=main)](https://github.com/Kijewski/zipsign/actions/workflows/ci.yml) | ||
[![Crates.io](https://img.shields.io/crates/v/zipsign?logo=rust)](https://crates.io/crates/zipsign) | ||
![License: License: Apache-2.0](https://img.shields.io/badge/license-Apache--2.0-informational?logo=apache) | ||
|
||
This library contains the brains of [`zipsign`](https://github.com/Kijewski/zipsign). | ||
You can use it in your projects to verify and sign `.zip` and `.tar.gz` files | ||
without running a separate application, e.g. to verify a self-update. |