2020-08-13 15:43:47 +03:00
|
|
|
package container
|
2020-08-12 16:19:17 +03: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()
|
|
|
|
}
|