Skip to content

Commit

Permalink
New crypto key api
Browse files Browse the repository at this point in the history
Require public keys in order to remove an internal x25519 operation
  • Loading branch information
finfet committed May 13, 2024
1 parent 5a99e27 commit 20a9f0b
Show file tree
Hide file tree
Showing 8 changed files with 166 additions and 76 deletions.
62 changes: 31 additions & 31 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions src/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ submitted for inclusion in this project by you, shall be licensed as
BSD-3-Clause, without any additonal terms or conditions.


## Security Warning
> [!WARNING]
> To the best of my knowledge, Kestrel is secure. However, this software has
> not yet undergone a formal security audit. Swim at your own risk.
To the best of my knowledge, Kestrel is secure. However, this software has
not yet undergone a formal security audit. Swim at your own risk.
7 changes: 7 additions & 0 deletions src/crypto/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## Version 2.0.0

Date: 2024-05-13

- Require public keys in API surface in order to remove an internal
x25519 operation.

## Version 1.0.1

Date: 2024-02-01
Expand Down
4 changes: 2 additions & 2 deletions src/crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kestrel-crypto"
version = "1.0.1"
version = "2.0.0"
edition = "2021"
authors = [
"Kyle Schreiber <[email protected]>",
Expand All @@ -14,7 +14,7 @@ documentation = "https://docs.rs/kestrel-crypto/"
categories = ["cryptography"]

[dependencies]
getrandom = "0.2.12"
getrandom = "0.2.15"
x25519-dalek = { version = "2", default-features = false, features = ["zeroize"] }
chacha20poly1305 = { version = "0.10.1", default-features = false, features = ["alloc"] }
sha2 = { version = "0.10.8", default-features = false }
Expand Down
Loading

0 comments on commit 20a9f0b

Please sign in to comment.