blob: feb80b29985a5d4b5180a969a721ad48429e9323 [file] [log] [blame]
package serialization
import "v.io/v23/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
}