-
Notifications
You must be signed in to change notification settings - Fork 237
Closed
Description
The type Record
appears several times through the spec with different formats
type Record struct {
Value []byte
Expires time.Duration
Signature []byte
}
Record Node {
Scheme Link // link to a validity scheme
Value Link // link to an object representing the value.
Version Data // record version number
Validity Data // data needed to satisfy the validity scheme
}
type Record struct {
Scheme Link // link to the validity scheme
Signature Link // link to a cryptographic signature over the rest of record
Value Data // an opaque value
}
type Record struct {
Scheme Link // link to the validity scheme
Signature Link // link to a cryptographic signature over the record
Expires Data // datetime at which record expires
Value Data // an opaque value
}
Shouldn't it be just the last one?
Metadata
Metadata
Assignees
Labels
No labels