Documentation ¶
Index ¶
- Constants
- type WebFrontEndImpl
- func (wfe *WebFrontEndImpl) Authz(ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, ...)
- func (wfe *WebFrontEndImpl) Certificate(ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, ...)
- func (wfe *WebFrontEndImpl) Challenge(ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, ...)
- func (wfe *WebFrontEndImpl) Directory(ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, ...)
- func (wfe *WebFrontEndImpl) FinalizeOrder(ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, ...)
- func (wfe *WebFrontEndImpl) HandleFunc(mux *http.ServeMux, pattern string, handler wfeHandlerFunc, methods ...string)
- func (wfe *WebFrontEndImpl) Handler() http.Handler
- func (wfe *WebFrontEndImpl) KeyRollover(ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, ...)
- func (wfe *WebFrontEndImpl) NewAccount(ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, ...)
- func (wfe *WebFrontEndImpl) NewOrder(ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, ...)
- func (wfe *WebFrontEndImpl) Nonce(ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, ...)
- func (wfe *WebFrontEndImpl) Order(ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, ...)
- func (wfe *WebFrontEndImpl) RevokeCert(ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, ...)
- func (wfe *WebFrontEndImpl) RootCert(ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, ...)
- func (wfe *WebFrontEndImpl) UpdateAccount(ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, ...)
Constants ¶
View Source
const ( // Note: We deliberately pick endpoint paths that differ from Boulder to // exercise clients processing of the /directory response // We export the DirectoryPath and RootCertPath so that the pebble binary can reference it DirectoryPath = "/dir" RootCertPath = "/root" )
View Source
const ToSURL = "data:text/plain,Do%20what%20thou%20wilt"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type WebFrontEndImpl ¶
type WebFrontEndImpl struct {
// contains filtered or unexported fields
}
func (*WebFrontEndImpl) Authz ¶
func (wfe *WebFrontEndImpl) Authz( ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, request *http.Request)
func (*WebFrontEndImpl) Certificate ¶
func (wfe *WebFrontEndImpl) Certificate( ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, request *http.Request)
func (*WebFrontEndImpl) Challenge ¶
func (wfe *WebFrontEndImpl) Challenge( ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, request *http.Request)
func (*WebFrontEndImpl) Directory ¶
func (wfe *WebFrontEndImpl) Directory( ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, request *http.Request)
func (*WebFrontEndImpl) FinalizeOrder ¶
func (wfe *WebFrontEndImpl) FinalizeOrder( ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, request *http.Request)
func (*WebFrontEndImpl) HandleFunc ¶
func (wfe *WebFrontEndImpl) HandleFunc( mux *http.ServeMux, pattern string, handler wfeHandlerFunc, methods ...string)
func (*WebFrontEndImpl) Handler ¶
func (wfe *WebFrontEndImpl) Handler() http.Handler
func (*WebFrontEndImpl) KeyRollover ¶
func (wfe *WebFrontEndImpl) KeyRollover( ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, request *http.Request)
func (*WebFrontEndImpl) NewAccount ¶
func (wfe *WebFrontEndImpl) NewAccount( ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, request *http.Request)
func (*WebFrontEndImpl) NewOrder ¶
func (wfe *WebFrontEndImpl) NewOrder( ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, request *http.Request)
NewOrder creates a new Order request and populates its authorizations
func (*WebFrontEndImpl) Nonce ¶
func (wfe *WebFrontEndImpl) Nonce( ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, request *http.Request)
func (*WebFrontEndImpl) Order ¶
func (wfe *WebFrontEndImpl) Order( ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, request *http.Request)
Order retrieves the details of an existing order
func (*WebFrontEndImpl) RevokeCert ¶
func (wfe *WebFrontEndImpl) RevokeCert( ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, request *http.Request)
RevokeCert revokes an ACME certificate. It currently only implements one method of ACME revocation: Signing the revocation request by signing it with the certificate to be revoked's private key and embedding the certificate to be revoked's public key as a JWK in the JWS.
Pebble's idea of certificate revocation is to forget the certificate exists. This method does not percolate to a CRL or an OCSP response.
func (*WebFrontEndImpl) RootCert ¶
func (wfe *WebFrontEndImpl) RootCert( ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, request *http.Request)
func (*WebFrontEndImpl) UpdateAccount ¶
func (wfe *WebFrontEndImpl) UpdateAccount( ctx context.Context, logEvent *requestEvent, response http.ResponseWriter, request *http.Request)
Click to show internal directories.
Click to hide internal directories.