mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-05 21:20:34 +00:00
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
|
|
}
|