| 518 | } |
| 519 | |
| 520 | Proposal |
| 521 | State::group_context_extensions_proposal(ExtensionList exts) const |
| 522 | { |
| 523 | if (!extensions_supported(exts)) { |
| 524 | throw InvalidParameterError("Unsupported extensions"); |
| 525 | } |
| 526 | |
| 527 | return { GroupContextExtensions{ std::move(exts) } }; |
| 528 | } |
| 529 | |
| 530 | Proposal |
| 531 | State::pre_shared_key_proposal(const bytes& external_psk_id) const |
nothing calls this directly
no test coverage detected