smallstep-certificates/scep/service.go
2021-05-26 16:04:19 -07:00

10 lines
167 B
Go

package scep
import "crypto"
// Service is a (temporary?) wrapper for signer/decrypters
type Service struct {
Signer crypto.Signer
Decrypter crypto.Decrypter
}