traefik/vendor/github.com/xenolf/lego/acme/challenges.go

14 lines
590 B
Go
Raw Normal View History

2018-05-31 07:30:04 +00:00
package acme
2018-03-26 12:12:03 +00:00
// Challenge is a string that identifies a particular type and version of ACME challenge.
type Challenge string
const (
2018-05-31 07:30:04 +00:00
// HTTP01 is the "http-01" ACME challenge https://github.com/ietf-wg-acme/acme/blob/master/draft-ietf-acme-acme.md#http
2018-03-26 12:12:03 +00:00
// Note: HTTP01ChallengePath returns the URL path to fulfill this challenge
HTTP01 = Challenge("http-01")
2018-05-31 07:30:04 +00:00
// DNS01 is the "dns-01" ACME challenge https://github.com/ietf-wg-acme/acme/blob/master/draft-ietf-acme-acme.md#dns
2018-03-26 12:12:03 +00:00
// Note: DNS01Record returns a DNS record which will fulfill this challenge
DNS01 = Challenge("dns-01")
)