12 lines
240 B
Go
12 lines
240 B
Go
|
package signing
|
||
|
|
||
|
type X509Signing struct{}
|
||
|
|
||
|
type RequestInformation struct{}
|
||
|
|
||
|
type CertificateSigned struct{}
|
||
|
|
||
|
func (x *X509Signing) Sign(signingRequest *RequestInformation) (*CertificateSigned, error) {
|
||
|
return &CertificateSigned{}, nil
|
||
|
}
|