(KeyPackage keyPackage, MessageOptions msgOptions)
| 1364 | } |
| 1365 | |
| 1366 | public MLSMessage add(KeyPackage keyPackage, MessageOptions msgOptions) |
| 1367 | throws Exception |
| 1368 | { |
| 1369 | AuthenticatedContent contentAuth = sign( |
| 1370 | Sender.forMember(index), |
| 1371 | addProposal(keyPackage), |
| 1372 | msgOptions.authenticatedData, |
| 1373 | msgOptions.encrypt |
| 1374 | ); |
| 1375 | return protect(contentAuth, msgOptions.paddingSize); |
| 1376 | } |
| 1377 | |
| 1378 | public MLSMessage update(Proposal update, MessageOptions msgOptions) |
| 1379 | throws Exception |
nothing calls this directly
no test coverage detected