-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from franziskuskiefer/0.0.4
0.0.4
- Loading branch information
Showing
11 changed files
with
149,747 additions
and
7,118 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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
kind: pipeline | ||
type: docker | ||
name: arm64 | ||
|
||
platform: | ||
arch: arm64 | ||
|
||
steps: | ||
- name: test | ||
image: rust:latest | ||
commands: | ||
- apt-get update -qq --yes && apt-get install -qq --yes clang | ||
- git submodule update --init --recursive | ||
- cargo build --verbose | ||
- cargo test --verbose --all-features | ||
|
||
--- | ||
kind: pipeline | ||
type: docker | ||
name: arm | ||
|
||
platform: | ||
arch: arm | ||
|
||
steps: | ||
- name: test | ||
image: rust:latest | ||
commands: | ||
- apt-get update -qq --yes && apt-get install -qq --yes clang | ||
- git submodule update --init --recursive | ||
- cargo build --verbose | ||
- cargo test --verbose --all-features |
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 |
---|---|---|
|
@@ -18,6 +18,8 @@ jobs: | |
|
||
- name: Run cargo-tarpaulin | ||
uses: actions-rs/[email protected] | ||
with: | ||
timeout: 300 | ||
|
||
- name: Upload to codecov.io | ||
uses: codecov/codecov-action@v1 | ||
|
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 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,16 +1,16 @@ | ||
[package] | ||
name = "hpke-rs" | ||
version = "0.0.3" | ||
version = "0.0.4" | ||
authors = ["Franziskus Kiefer <[email protected]>"] | ||
edition = "2018" | ||
license = "MPL-2.0" | ||
documentation = "https://docs.rs/hpke-rs" | ||
documentation = "https://www.franziskuskiefer.de/hpke-rs" | ||
description = "HPKE Implementation using Evercrypt" | ||
readme = "README.md" | ||
repository = "https://github.com/franziskuskiefer/hpke-rs" | ||
|
||
[dependencies] | ||
evercrypt = { version = "0.0.5" } | ||
evercrypt = "0.0.6" | ||
serde_json = { version = "1.0", optional = true } | ||
serde = { version = "1.0", features = ["derive"], optional = true } | ||
|
||
|
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,6 +1,11 @@ | ||
An implementation of [HPKE](https://cfrg.github.io/draft-irtf-cfrg-hpke/draft-irtf-cfrg-hpke.html) using [Evercrypt](https://github.com/franziskuskiefer/evercrypt-rust/tree/master/evercrypt-rs). | ||
|
||
|
||
![Build & Test](https://github.com/franziskuskiefer/hpke-rs/workflows/Build%20&%20Test/badge.svg) | ||
[![Docs](https://img.shields.io/badge/docs-master-blue.svg)](https://www.franziskuskiefer.de/hpke-rs/hpke_rs/index.html) | ||
[![codecov](https://codecov.io/gh/franziskuskiefer/hpke-rs/branch/master/graph/badge.svg?token=RO2Q0YTSNY)](https://codecov.io/gh/franziskuskiefer/hpke-rs/) | ||
![Beta](https://img.shields.io/badge/maturity-beta-orange.svg) | ||
[![crates.io](https://img.shields.io/crates/v/hpke-rs.svg)](https://crates.io/crates/hpke-rs) | ||
|
||
An implementation of [HPKE](https://cfrg.github.io/draft-irtf-cfrg-hpke/draft-irtf-cfrg-hpke.html) using [Evercrypt](https://github.com/franziskuskiefer/evercrypt-rust/tree/master/evercrypt-rs). | ||
|
||
This version is compatible with draft-07. |
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
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
Oops, something went wrong.