cacert-gosigner/x509/signing/signing.go

12 lines
240 B
Go
Raw Normal View History

package signing
type X509Signing struct{}
type RequestInformation struct{}
type CertificateSigned struct{}
func (x *X509Signing) Sign(signingRequest *RequestInformation) (*CertificateSigned, error) {
return &CertificateSigned{}, nil
}