-
Notifications
You must be signed in to change notification settings - Fork 175
ocb3: import from offset-codebook-mode
crate
#587
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 12 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
f57b29d
first commit
initsecret a06cb66
fix typos
initsecret 3a99381
fix clippy warning
initsecret 8158a74
add ci config
initsecret 4aee179
fix typo in README
initsecret e2dba95
use only snake case
initsecret 818829c
remove unsafe code
initsecret eb277fd
remove dependency on aes crate
dignifiedquire 6250283
convert rfc tests to blobby format
dignifiedquire 1683095
add example
dignifiedquire 1e92139
bump MSRV to 1.60
dignifiedquire a03bc69
reduce l_table_size on 32bit
dignifiedquire fe0324a
downgrade zeroize
dignifiedquire 54ae73e
downgrade byteorder
dignifiedquire 8bd3b76
Update ocb3/Cargo.toml
tarcieri File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,68 @@ | ||
name: ocb3 | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- ".github/workflows/ocb3.yml" | ||
- "ocb3/**" | ||
- "Cargo.*" | ||
push: | ||
branches: master | ||
|
||
defaults: | ||
run: | ||
working-directory: ocb3 | ||
|
||
env: | ||
CARGO_INCREMENTAL: 0 | ||
RUSTFLAGS: "-Dwarnings" | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
rust: | ||
- 1.60.0 # MSRV | ||
- stable | ||
target: | ||
- armv7a-none-eabi | ||
- thumbv7em-none-eabi | ||
- wasm32-unknown-unknown | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ matrix.rust }} | ||
targets: ${{ matrix.target }} | ||
- run: cargo build --no-default-features --release --target ${{ matrix.target }} | ||
|
||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
include: | ||
# 32-bit Linux | ||
- target: i686-unknown-linux-gnu | ||
rust: 1.60.0 # MSRV | ||
deps: sudo apt update && sudo apt install gcc-multilib | ||
- target: i686-unknown-linux-gnu | ||
rust: stable | ||
deps: sudo apt update && sudo apt install gcc-multilib | ||
|
||
# 64-bit Linux | ||
- target: x86_64-unknown-linux-gnu | ||
rust: 1.60.0 # MSRV | ||
- target: x86_64-unknown-linux-gnu | ||
rust: stable | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ matrix.rust }} | ||
targets: ${{ matrix.target }} | ||
- run: ${{ matrix.deps }} | ||
- run: cargo test --target ${{ matrix.target }} --release | ||
- run: cargo test --target ${{ matrix.target }} --release --features stream,std,zeroize | ||
- run: cargo test --target ${{ matrix.target }} --release --all-features | ||
- run: cargo build --target ${{ matrix.target }} --benches |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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 |
---|---|---|
|
@@ -9,5 +9,6 @@ members = [ | |
"deoxys", | ||
"eax", | ||
"mgm", | ||
"ocb3", | ||
] | ||
resolver = "2" |
This file contains hidden or 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,10 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
|
||
## 0.1.0 (2023-XX-XX) | ||
|
||
- Initial release |
This file contains hidden or 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,42 @@ | ||
[package] | ||
name = "ocb3" | ||
version = "0.1.0" | ||
description = """ | ||
Pure Rust implementation of the OCB3 | ||
Authenticated Encryption with Associated Data (AEAD) Cipher | ||
""" | ||
authors = ["RustCrypto Developers"] | ||
edition = "2021" | ||
license = "Apache-2.0 OR MIT" | ||
readme = "README.md" | ||
documentation = "https://docs.rs/ocb3" | ||
repository = "https://github.com/RustCrypto/AEADs" | ||
keywords = ["aead", "encryption", "ocb", "ocb3"] | ||
categories = ["cryptography", "no-std"] | ||
rust-version = "1.60" | ||
|
||
[dependencies] | ||
aead = { version = "0.5", default-features = false } | ||
cipher = "0.4" | ||
ctr = "0.9" | ||
subtle = { version = "2", default-features = false } | ||
zeroize = { version = "1", optional = true, default-features = false } | ||
|
||
[dev-dependencies] | ||
aead = { version = "0.5", features = ["dev"], default-features = false } | ||
aes = { version = "0.8", default-features = false } | ||
hex-literal = "0.3" | ||
|
||
[features] | ||
default = ["alloc", "getrandom"] | ||
std = ["aead/std", "alloc"] | ||
alloc = ["aead/alloc"] | ||
arrayvec = ["aead/arrayvec"] | ||
getrandom = ["aead/getrandom", "rand_core"] | ||
heapless = ["aead/heapless"] | ||
rand_core = ["aead/rand_core"] | ||
stream = ["aead/stream"] | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true | ||
rustdoc-args = ["--cfg", "docsrs"] |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.