Skip to content

Commit

Permalink
Merge pull request #524 from Nitrokey/p521-brainpool512
Browse files Browse the repository at this point in the history
Add support for p521 and brainpool512
  • Loading branch information
sosthene-nitrokey authored Aug 13, 2024
2 parents 30cc5fc + 8043892 commit 553fff1
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,16 @@

- fido-authenticator: Implement the largeBlobKey extension and the largeBlobs command ([fido-authenticator#38][])
- piv: Fix crash when changing PUK ([piv-authenticator#38][])
- OpenPGP: add support for additional curves when using the se050 backend: ([#524][])
- NIST P-384
- NIST P-521
- brainpoolp256r1
- brainpoolp384r1
- brainpoolp512r1

[fido-authenticator#38]: https://github.com/Nitrokey/fido-authenticator/issues/38
[piv-authenticator#38]: https://github.com/Nitrokey/piv-authenticator/issues/38
[#524]: https://github.com/Nitrokey/nitrokey-3-firmware/pull/524

## v1.7.2 (2024-06-11)

Expand Down
9 changes: 5 additions & 4 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ trussed-hkdf = { git = "https://github.com/trussed-dev/trussed-staging.git", tag
trussed-rsa-alloc = { git = "https://github.com/trussed-dev/trussed-rsa-backend.git", tag = "v0.2.1" }
trussed-usbip = { git = "https://github.com/Nitrokey/pc-usbip-runner.git", tag = "v0.0.1-nitrokey.4" }
trussed-se050-manage = { git = "https://github.com/Nitrokey/trussed-se050-backend.git", tag = "se050-manage-v0.1.0" }
trussed-se050-backend = { git = "https://github.com/Nitrokey/trussed-se050-backend.git", tag = "v0.3.4" }
trussed-se050-backend = { git = "https://github.com/Nitrokey/trussed-se050-backend.git", tag ="v0.3.5" }

[profile.release]
codegen-units = 1
Expand Down
4 changes: 4 additions & 0 deletions components/apps/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1005,9 +1005,13 @@ impl<R: Runner> App<R> for OpcardApp<R> {
#[cfg(feature = "nk3-test")]
Alg::P_384,
#[cfg(feature = "nk3-test")]
Alg::P_521,
#[cfg(feature = "nk3-test")]
Alg::BRAINPOOL_P256R1,
#[cfg(feature = "nk3-test")]
Alg::BRAINPOOL_P384R1,
#[cfg(feature = "nk3-test")]
Alg::BRAINPOOL_P512R1,
Alg::RSA_2048,
Alg::RSA_3072,
Alg::RSA_4096,
Expand Down

0 comments on commit 553fff1

Please sign in to comment.