You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Creating an encryption group with more than 30 participants causes the meta param to exceed the 10kb limit and prevents the group from being created.
To Reproduce
Steps to reproduce the behaviour:
Pass in string[] with more than 30 strings into const users = await eThree.findUsers(members);
Pass the FindUsersResult with more than 30 users into const group = await eThree.createGroup(c.cid, users);
This causes the meta param to exceed the 10kb limit.
Expected behaviour
I couldn't find documentation on the maximum number of participants supported by group encryption. Maybe some warnings in the doc would be useful. Also, I don't know why the meta-param size is relational to the number of participants added to a group. A clear explanation would be useful.
Describe the bug
Creating an encryption group with more than 30 participants causes the meta param to exceed the 10kb limit and prevents the group from being created.
To Reproduce
Steps to reproduce the behaviour:
const users = await eThree.findUsers(members);
const group = await eThree.createGroup(c.cid, users);
Expected behaviour
I couldn't find documentation on the maximum number of participants supported by group encryption. Maybe some warnings in the doc would be useful. Also, I don't know why the meta-param size is relational to the number of participants added to a group. A clear explanation would be useful.
Additional context
"@virgilsecurity/e3kit-browser": "2.5.1",
The text was updated successfully, but these errors were encountered: