| 585 | } |
| 586 | |
| 587 | PublicMessage::PublicMessage(AuthenticatedContent content_auth) |
| 588 | : content(std::move(content_auth.content)) |
| 589 | , auth(std::move(content_auth.auth)) |
| 590 | { |
| 591 | if (content_auth.wire_format != WireFormat::mls_public_message) { |
| 592 | throw InvalidParameterError("Wire format mismatch (not mls_plaintext)"); |
| 593 | } |
| 594 | } |
| 595 | |
| 596 | struct GroupContentTBM |
| 597 | { |
nothing calls this directly
no test coverage detected