-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: update CipherId CipherMode CipherType * build: use a pre-release ver * style: fmt * feat: add derives for CipherId * fix: make chachapoly valid ciphermode Add chachapoly as valid ciphermode for Authenticated Cipher. * feat: add fn for EcPoint Add a no compress version import fn: `from_binary_no_compress`. It seems current way of detect compression is not always true. * feat: make Hmac clone-able * Revert "feat: make Hmac clone-able" This reverts commit 78af5e2. * fix: naming and type
- Loading branch information
Showing
5 changed files
with
96 additions
and
26 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "mbedtls" | ||
# We jumped from v0.9 to v0.12 because v0.10 and v0.11 were based on mbedtls 3.X, which | ||
# we decided not to support. | ||
version = "0.12.0" | ||
version = "0.12.0-alpha.1" | ||
authors = ["Jethro Beekman <[email protected]>"] | ||
build = "build.rs" | ||
edition = "2018" | ||
|
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
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