Skip to content

Commit

Permalink
bump up to 0.4.0 (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
keepsimple1 authored Oct 5, 2020
1 parent 5ecd558 commit 4b98229
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 0.4.0

- Add support for CFB128 mode

# Version 0.3.0

- Add support for 192-bit keys
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libaes"
version = "0.3.0"
version = "0.4.0"
authors = ["Han Xu <[email protected]>"]
edition = "2018"
description = "AES cipher in safe Rust"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This library strives to be:
- Correct (as the original OpenSSL implementation)
- Fast (as OpenSSL 1.1.1)
- Safe Rust code only.
- Minimal: no dependencies.
- Small: no dependencies.

Currently, this library supports 128-bit, 192-bit and 256-bit keys with CBC mode and CFB128 mode.

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//!
//! - Safe Rust code only.
//! - Zero dependencies.
//! - Fast (as the C version).
//! - Fast (as OpenSSL 1.1.1).
//!
//! Currently, this cipher supports 128-bit, 192-bit and 256-bit keys with the following modes:
//!
Expand Down

0 comments on commit 4b98229

Please sign in to comment.