certificates/scep/service.go
2021-02-26 00:32:21 +01:00

9 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
}