Skip to content

Commit

Permalink
crypto hard
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslandoga committed Jun 28, 2024
1 parent 43d2b90 commit 01adb48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- drop support for Elixir < v1.16
- [allow](https://github.com/sasa1977/site_encrypt/pull/63) all `Logger.levels()` in `:log_level` option
- [support](https://github.com/sasa1977/site_encrypt/pull/69) ECDSA in the native ACME client
- [default](https://github.com/sasa1977/site_encrypt/pull/69) to ECDSA in the native ACME client

## 0.6.0

Expand Down
2 changes: 1 addition & 1 deletion lib/site_encrypt/acme/client.ex
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ defmodule SiteEncrypt.Acme.Client do
end

defp generate_key(%{key_alg: :ec}) do
JOSE.JWK.generate_key({:ec, :secp256k1})
JOSE.JWK.generate_key({:ec, :secp256r1})
end

defp start_session(directory_url, account_key, session_opts) do
Expand Down

0 comments on commit 01adb48

Please sign in to comment.