forked from TrueCloudLab/certificates
10 lines
167 B
Go
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
|
||
|
}
|