| 1047 | } |
| 1048 | |
| 1049 | State::Tombstone::Tombstone(const State& state_in, ReInit reinit_in) |
| 1050 | : epoch_authenticator(state_in.epoch_authenticator()) |
| 1051 | , reinit(std::move(reinit_in)) |
| 1052 | , prior_group_id(state_in._group_id) |
| 1053 | , prior_epoch(state_in._epoch) |
| 1054 | , resumption_psk(state_in._key_schedule.resumption_psk) |
| 1055 | { |
| 1056 | } |
| 1057 | |
| 1058 | std::tuple<State, Welcome> |
| 1059 | State::Tombstone::create_welcome(HPKEPrivateKey enc_priv, |
nothing calls this directly
no test coverage detected