package dhellman

type message struct {
	encoded []byte
}

func (s *message) Encoded() []byte {
	return s.encoded
}