cacert-gosigner/pkg/openpgp/signing/signing.go
Jan Dittberner 63c3716b5b Move x509 and openpgp into pkg
small refactoring to unify package structure. Use crypto.rand for serial
number generation in tests.
2022-04-24 08:03:51 +02:00

11 lines
240 B
Go

package signing
type OpenPGPSigning struct{}
type RequestInformation struct{}
type SignedPublicKey struct{}
func (o *OpenPGPSigning) Sign(signingRequest *RequestInformation) (*SignedPublicKey, error) {
return &SignedPublicKey{}, nil
}