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: 2 additions & 0 deletions elliptic-curve/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## 0.14.0 (UNRELEASED)
### Changed
- Edition changed to 2024 and MSRV bumped to 1.85 ([#1759])
- Accept mixed-case hex-encoded strings in `FromStr` impl for `ScalarValue` ([#2037])

[#1759]: https://github.com/RustCrypto/traits/pull/1759
[#2037]: https://github.com/RustCrypto/traits/pull/2037

## 0.13.8 (2023-11-18)
### Changed
Expand Down
2 changes: 1 addition & 1 deletion elliptic-curve/src/scalar/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ where

fn from_str(hex: &str) -> Result<Self> {
let mut bytes = FieldBytes::<C>::default();
base16ct::lower::decode(hex, &mut bytes)?;
base16ct::mixed::decode(hex, &mut bytes)?;
Self::from_slice(&bytes)
}
}
Expand Down