Skip to content
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

add digitalSignature usage to the key #96

Merged
merged 4 commits into from
Oct 17, 2024
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
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ and this project adheres to

---

## [0.8.1] - 2024-10-17

# Fixed

- Chrome ERR_SSL_KEY_USAGE_INCOMPATIBLE due to the key usage not being configured.

---

## [0.8.0] - 2024-08-28

- Improve documentation about how to configure Localauth0 in docker.
Expand Down Expand Up @@ -184,7 +192,9 @@ Note: images temporairly use the public.ecr.aws/c6i9l4r6/localauth0 registry.

- First release 🎉

[Unreleased]: https://github.com/primait/localauth0/compare/0.8.0...HEAD

[Unreleased]: https://github.com/primait/localauth0/compare/0.8.1...HEAD
[0.8.1]: https://github.com/primait/localauth0/compare/0.8.0...0.8.1
[0.8.0]: https://github.com/primait/localauth0/compare/0.7.2...0.8.0
[0.7.2]: https://github.com/primait/localauth0/compare/0.7.1...0.7.2
[0.7.1]: https://github.com/primait/localauth0/compare/0.7.0...0.7.1
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "localauth0"
version = "0.8.0"
version = "0.8.1"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ tenant and test it offline for "real".
In order to run localauth0 docker image execute the following:

```shell
docker run -d -p 3000:3000 public.ecr.aws/primaassicurazioni/localauth0:0.8.0
docker run -d -p 3000:3000 public.ecr.aws/primaassicurazioni/localauth0:0.8.1
```

By default, the container exposes an http server on the port 3000 and an https
Expand Down Expand Up @@ -247,7 +247,7 @@ Add this snippet to your `docker-compose.yml` file and reference it in your app

```yaml
auth0:
image: public.ecr.aws/primaassicurazioni/localauth0:0.8.0
image: public.ecr.aws/primaassicurazioni/localauth0:0.8.1
healthcheck:
test: ["CMD", "/localauth0", "healthcheck"]
ports:
Expand Down
9 changes: 8 additions & 1 deletion src/model/certificates.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,14 @@ pub fn generate_certificate(key_pair: &PKey<Private>) -> Result<X509, Error> {
cert_builder.set_not_after(&not_after)?;

cert_builder.append_extension(BasicConstraints::new().critical().ca().build()?)?;
cert_builder.append_extension(KeyUsage::new().critical().key_cert_sign().crl_sign().build()?)?;
cert_builder.append_extension(
KeyUsage::new()
.critical()
.key_cert_sign()
.crl_sign()
.digital_signature()
.build()?,
)?;

let subject_key_identifier = SubjectKeyIdentifier::new().build(&cert_builder.x509v3_context(None, None))?;
cert_builder.append_extension(subject_key_identifier)?;
Expand Down
Loading