| 170 | /// |
| 171 | |
| 172 | GroupKeySource::GroupKeySource(CipherSuite suite_in, |
| 173 | LeafCount group_size, |
| 174 | bytes encryption_secret) |
| 175 | : suite(suite_in) |
| 176 | , secret_tree(suite, group_size, std::move(encryption_secret)) |
| 177 | { |
| 178 | } |
| 179 | |
| 180 | HashRatchet& |
| 181 | GroupKeySource::chain(ContentType type, LeafIndex sender) |
nothing calls this directly
no outgoing calls
no test coverage detected