Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion aead-stream/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ 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).

## UNRELEASED
## 0.6.0 (2026-06-28)
- Initial release
2 changes: 1 addition & 1 deletion aead-stream/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aead-stream"
version = "0.6.0-rc.3"
version = "0.6.0"
description = "Generic implementation of the STREAM online authenticated encryption construction"
authors = ["RustCrypto Developers"]
edition = "2024"
Expand Down
2 changes: 1 addition & 1 deletion aead-stream/LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2024 The RustCrypto Project Developers
Copyright (c) 2024-2026 The RustCrypto Project Developers

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
6 changes: 3 additions & 3 deletions aead-stream/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

[![crate][crate-image]][crate-link]
[![Docs][docs-image]][docs-link]
[![Build Status][build-image]][build-link]
![Apache2/MIT licensed][license-image]
![Rust Version][rustc-image]
[![Project Chat][chat-image]][chat-link]
[![Build Status][build-image]][build-link]

Generic pure-Rust implementation of the STREAM online authenticated encryption construction
as described in the paper [Online Authenticated-Encryption and its Nonce-Reuse Misuse-Resistance][1].
Expand Down Expand Up @@ -55,12 +55,12 @@ dual licensed as above, without any additional terms or conditions.
[crate-link]: https://crates.io/crates/aead-stream
[docs-image]: https://docs.rs/aead-stream/badge.svg
[docs-link]: https://docs.rs/aead-stream/
[build-image]: https://github.com/RustCrypto/AEADs/actions/workflows/aead-stream.yml/badge.svg
[build-link]: https://github.com/RustCrypto/AEADs/actions/workflows/aead-stream.yml
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
[rustc-image]: https://img.shields.io/badge/rustc-1.85+-blue.svg
[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg
[chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/260038-AEADs
[build-image]: https://github.com/RustCrypto/AEADs/workflows/aead-stream/badge.svg?branch=master&event=push
[build-link]: https://github.com/RustCrypto/AEADs/actions

[//]: # (general links)

Expand Down
2 changes: 1 addition & 1 deletion ocb3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ cipher = "0.5"
ctr = "0.10"
dbl = "0.5"
subtle = { version = "2", default-features = false }
aead-stream = { version = "0.6.0-rc.3", optional = true, default-features = false }
aead-stream = { version = "0.6", optional = true, default-features = false }
zeroize = { version = "1", optional = true, default-features = false }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion xaes-256-gcm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ aead = { version = "0.6", default-features = false }
aes = "0.9"
aes-gcm = { version = "0.11.0-rc.3", default-features = false, features = ["aes"] }
cipher = "0.5"
aead-stream = { version = "0.6.0-rc.2", optional = true, default-features = false }
aead-stream = { version = "0.6", optional = true, default-features = false }

[dev-dependencies]
aead = { version = "0.6", features = ["dev"], default-features = false }
Expand Down
Loading