blob: 2033af3d554778437b076e59c53ec33ad379e4b2 [file] [log] [blame]
package serialization
import "v.io/core/veyron2/security"
type SignedHeader struct {
ChunkSizeBytes int64
}
// SignedData describes the information sent by a SigningWriter and read by VerifiyingReader.
type SignedData union {
Signature security.Signature
Hash [32]byte
}