linstrom/ap/signature.go
2024-02-01 20:58:36 +00:00

13 lines
361 B
Go

package ap
import (
"net/url"
"time"
)
type Signature struct {
Created time.Time `json:"created"` // When this signature was created
Creator url.URL `json:"creator"` // What key was used to create it
Value string `json:"signatureValue"` // The signature itself
Type string `json:"type"` // What algorithm was used
}