mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-11 07:11:00 +00:00
f01286bb48
Update the interface for all the provisioners.
45 lines
787 B
Go
45 lines
787 B
Go
package provisioner
|
|
|
|
import (
|
|
"context"
|
|
"crypto/x509"
|
|
)
|
|
|
|
// noop provisioners is a provisioner that accepts anything.
|
|
type noop struct{}
|
|
|
|
func (p *noop) GetID() string {
|
|
return "noop"
|
|
}
|
|
|
|
func (p *noop) GetTokenID(token string) (string, error) {
|
|
return "", nil
|
|
}
|
|
|
|
func (p *noop) GetName() string {
|
|
return "noop"
|
|
}
|
|
func (p *noop) GetType() Type {
|
|
return noopType
|
|
}
|
|
|
|
func (p *noop) GetEncryptedKey() (kid string, key string, ok bool) {
|
|
return "", "", false
|
|
}
|
|
|
|
func (p *noop) Init(config Config) error {
|
|
return nil
|
|
}
|
|
|
|
func (p *noop) AuthorizeSign(ctx context.Context, token string) ([]SignOption, error) {
|
|
return []SignOption{}, nil
|
|
}
|
|
|
|
func (p *noop) AuthorizeRenewal(cert *x509.Certificate) error {
|
|
return nil
|
|
}
|
|
|
|
func (p *noop) AuthorizeRevoke(token string) error {
|
|
return nil
|
|
}
|