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