Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
AcmeHttpChallenge.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4using Waher.Content;
6
8{
13 {
14 internal AcmeHttpChallenge(AcmeClient Client, Uri AccountLocation, IEnumerable<KeyValuePair<string, object>> Obj)
15 : base(Client, AccountLocation, Obj)
16 {
17 }
18
23 public string ResourceName
24 {
25 get { return "/.well-known/acme-challenge/" + this.Token; }
26 }
27 }
28}
Base class of all ACME challenges.
Implements an ACME client for the generation of certificates using ACME-compliant certificate servers...
Definition: AcmeClient.cs:24
Represents an ACME HTTP challenge.
string ResourceName
Challenge resource. The HTTP server should return AcmeChallenge.KeyAuthorization on this resource,...
AcmeClient Client
ACME client.
Definition: AcmeObject.cs:26
Uri AccountLocation
Account location.
Definition: AcmeResource.cs:31