Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: draft-20 [WPB-1192] #42

Open
wants to merge 54 commits into
base: upstream
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
2f9acdc
WIP: Draft-20 OpenMLS Async Edition
OtaK Apr 19, 2023
0fd1f8f
feat: Implement Group Context Extensions proposal support
May 17, 2023
e3930d9
fix: Make LeafNode lifetime visible
OtaK May 22, 2023
fb2b49c
fix: Pass pending proposals to check member support on gce extensions
May 23, 2023
aae07a2
Opened up API
OtaK May 23, 2023
97b5068
Added deref impl for RatchetTree
OtaK May 24, 2023
dd60193
API Opening
OtaK May 24, 2023
f4b9d95
More fixes
OtaK May 25, 2023
8c6ac9c
feat: Implement x509 credentials support - CL-171
May 23, 2023
a405566
Fixed compilation issues
OtaK May 30, 2023
8781a48
Derive Clone where needed
OtaK May 31, 2023
5a48731
impl from bytes for HashReference
beltram May 31, 2023
23249b2
Allow hashref from slice
OtaK May 31, 2023
1ac46dd
expose MlsMessageOut -> In
beltram May 31, 2023
c868028
impl From<u32> for Leaf|ParentNodeIndex
OtaK May 31, 2023
020645a
fix conversion discrepancy
beltram May 31, 2023
d38d720
expose private message epoch()
beltram May 31, 2023
42a9399
Added way to externally change state
OtaK May 31, 2023
f49aec9
expose x509 required fields
beltram Jun 1, 2023
51611f2
fix external commit bug happening when the joiner merges the external…
beltram Jun 1, 2023
2c9a429
clean unused methods
beltram Jun 2, 2023
a749632
quiet rust 1.70 lints
beltram Jun 2, 2023
da7dff2
fix AuthenticatedContentIn::content visibility
beltram Jun 2, 2023
12bd342
quiet clippy lints
beltram Jun 2, 2023
752b5a8
fix: replace home-baked constant-time implementation by subtle
beltram Jun 5, 2023
0148ed9
chore: remove already resolved TODO
beltram Jun 5, 2023
322138a
chore: remove some panicking code from `hkdf_extract`
beltram Jun 5, 2023
8492426
fix: review x509
beltram Jun 5, 2023
531d567
remove rayon
beltram Jun 6, 2023
f2eac36
fix wasm compilation and add wasm-bindgen
beltram Jun 7, 2023
dd95646
remove tokio and use async_std for test due to integration with rstest
beltram Jun 7, 2023
06a5178
fix failing test `secret_incompatible`
beltram Jun 7, 2023
40eb734
add more wasm-bindgen tests and fix the one related to keypackage lif…
beltram Jun 7, 2023
588fc2c
feat: Building blocks for reinit implementation
Jun 1, 2023
eaecb42
fix: return specialized error for very old epochs
Jun 7, 2023
04af534
fix: x509 cert time validation was not compatible with WASM
beltram Jun 8, 2023
3a03087
test: fix `test_past_secrets_in_group` failing tests
beltram Jun 8, 2023
b48b685
fix: Stop issuing full commits when not needed
OtaK Jun 8, 2023
3cdea56
fix: update commit were not updating the keys
beltram Jun 9, 2023
635dc83
fix: use latest tls_codec commits to fix a bug related to variable le…
beltram Jun 9, 2023
e7665c7
feat: Add root certificates group context
Jun 9, 2023
9e5ccef
fix: switch to CredentialType in the PerDomainTrustActor extension
Jun 14, 2023
d4151a2
chore: use pattern matching in PerDomainTrustAnchor constructor
beltram Jun 14, 2023
58430d3
fix: remove tls discriminants from `MlsCredentialType`
beltram Jun 14, 2023
83499a6
feat: Added support for X25519KYBER768DRAFT00_AES128GCM_SHA256_Ed2551…
OtaK Jun 19, 2023
bc73bf7
fix: Docs errors
OtaK Jun 21, 2023
8b11170
fix(dep): Pin tls_codec versions
OtaK Jun 21, 2023
05c1004
chore: Use stabilized tls_codec 0.3.0
OtaK Jun 22, 2023
91a2f39
feat: all methods required for updating with a LeafNode
beltram Jun 15, 2023
3bdb276
chore: expose group context
Jun 21, 2023
37964fe
chore: add helpers for detecting duplicate messages
beltram Jul 7, 2023
67e13ef
chore: expose `VerifiableGroupInfo::group_id`
beltram Jul 11, 2023
e84e0ff
WPB-2823
beltram Jul 11, 2023
5c459a9
chore: expose `PrivateMessage::content_type()`
beltram Jul 20, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
clean unused methods
  • Loading branch information
beltram committed Jun 2, 2023
commit 2c9a429b8bbc87f00d1c53cd0e7bb461537b695f
1 change: 1 addition & 0 deletions openmls/src/group/mls_group/mod.rs
Original file line number Diff line number Diff line change
@@ -406,6 +406,7 @@ impl MlsGroup {
}

/// Returns the underlying [CoreGroup].
#[cfg(test)]
pub(crate) fn group(&self) -> &CoreGroup {
&self.group
}
2 changes: 0 additions & 2 deletions openmls/src/group/tests/mod.rs
Original file line number Diff line number Diff line change
@@ -34,5 +34,3 @@ mod test_update_extensions;
mod test_wire_format_policy;
#[cfg(test)]
pub(crate) mod utils;

pub(crate) mod tree_printing;
22 changes: 0 additions & 22 deletions openmls/src/group/tests/tree_printing.rs

This file was deleted.