certificates/scep/service.go

10 lines
167 B
Go
Raw Normal View History

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