2020-08-13 12:43:47 +00:00
|
|
|
package container
|
2020-08-12 13:19:17 +00:00
|
|
|
|
|
|
|
func (m *Container) ReadSignedData(buf []byte) ([]byte, error) {
|
|
|
|
return m.StableMarshal(buf)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Container) SignedDataSize() int {
|
|
|
|
return m.StableSize()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *PutRequest_Body) ReadSignedData(buf []byte) ([]byte, error) {
|
|
|
|
return m.StableMarshal(buf)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *PutRequest_Body) SignedDataSize() int {
|
|
|
|
return m.StableSize()
|
|
|
|
}
|