Thanks to visit codestin.com
Credit goes to github.com

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 docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
### Added
- Export full chain certification in PEM ([#87][i87])
- Support custom `HttpClient` ([#95][i95])

### Changed
- Encapsulating ACME errors in exceptions ([#65][i65])
Expand Down Expand Up @@ -66,3 +67,4 @@ All notable changes to this project will be documented in this file.
[i76]: https://github.com/fszlin/certes/issues/76
[i86]: https://github.com/fszlin/certes/issues/86
[i87]: https://github.com/fszlin/certes/issues/87
[i95]: https://github.com/fszlin/certes/issues/95
2 changes: 1 addition & 1 deletion src/Certes/Acme/AcmeHttpClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace Certes.Acme
/// HTTP client handling ACME operations.
/// </summary>
/// <seealso cref="Certes.Acme.IAcmeHttpClient" />
internal class AcmeHttpClient : IAcmeHttpClient
public class AcmeHttpClient : IAcmeHttpClient
{
private const string MimeJoseJson = "application/jose+json";

Expand Down