11 lines
240 B
Go
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
|
|
}
|