func (nm *NetworkMessg) UnmarshalBinary(data []byte) error { return protobuf.Decode(data, nm) }
// Decodes a policy message for sending over the Internet func (msg *PolicyApprovedMessage) UnmarshalBinary(data []byte) (*PolicyApprovedMessage, error) { msg.PubKey = KEY_SUITE.Point() return msg, protobuf.Decode(data, msg) }
func (m ProtobufSerializer) Unmarshal(d []byte, o interface{}) error { return protobuf.Decode(d, o) }
func (nm *NetworkMessg) UnmarshalBinary(data []byte) error { dbg.Lvl2("UnmarshalBinary:", len(data), "bytes") return protobuf.Decode(data, nm) }