Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
d1cd6e6
fix: AUTH48 fixes
OtaK May 30, 2023
23d90f0
fix: Make keystore Send+Sync
OtaK Jun 26, 2023
5e66a38
chore: Bump crate versions
OtaK Jul 19, 2023
eae4c45
fix: make clippy happy
OtaK Jul 19, 2023
3604741
fix: clean key material, wrap Epoch Encryption Keypairs in a dedicate…
beltram Jul 12, 2023
e57b0fb
fix: make PskBundle public
OtaK Jul 31, 2023
4aba325
fix: Add proposals order
beltram Aug 17, 2023
0051312
chore: remove cli, delivery-service & evercrypt-backend crates
beltram Aug 23, 2023
2c36c11
fix: X509 Credential was serializing its identity whereas according t…
beltram Aug 23, 2023
46cc600
fix: reformat ClientId in x509 from a URI to Wire format
beltram Aug 24, 2023
2f1fb8a
chore: x509 identity extraction, replace filter + map by filter_map
beltram Aug 24, 2023
929e0c5
fix: x509 identity relax uuid validation
beltram Aug 24, 2023
779048e
Make the secret tree panic free (#1434)
raphaelrobert Sep 4, 2023
2e50618
feat!: add LeafNode validation
beltram Aug 22, 2023
acfc9b6
fix: x509 validation was verifying signatures using subject scheme an…
beltram Nov 17, 2023
f33e26f
build: tls_codec 0.4.0
beltram Nov 27, 2023
6a3b971
chore: fix clippy lints appearing in Rust 1.74.0
beltram Nov 27, 2023
3d4dacb
build: stop running tests in debug mode
beltram Nov 27, 2023
ad509a3
build: bump rstest
beltram Nov 27, 2023
3b4b21a
test: fix clippy lints in tests
beltram Nov 27, 2023
33a9dbf
feat: canonicalize KeyPackage identity
beltram Nov 27, 2023
20917e8
feat: add methods to take a RatchetTree from a GroupInfo without allo…
beltram Dec 11, 2023
49c6245
feat!: remove 'PerDomainTrustAnchor' from LeafNode default capabilities
beltram Dec 20, 2023
7496165
fix: 'VerifiableUpdateLeafNode' was not using the right 'TreeInfoTbs'…
beltram Dec 20, 2023
8e30301
feat: parse ClientId as an URI
beltram Jan 3, 2024
19c3d7a
chore: fix clippy lints
beltram Jan 5, 2024
3b5ceeb
fix: Allow single cert in X.509 credentials
OtaK Jan 19, 2024
ecd0363
feat: add update path accessor
beltram Jan 23, 2024
dd6a152
feat: expose `KeyPackageIn::credential`
beltram Jan 25, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- ubuntu-latest
- windows-latest
mode:
- debug
# - debug
- release
runs-on: ${{ matrix.os }}
steps:
Expand Down
7 changes: 2 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,8 @@ members = [
"traits",
"openmls_rust_crypto",
"fuzz",
"cli",
# "interop_client",
"memory_keystore",
"delivery-service/ds",
"delivery-service/ds-lib",
"basic_credential",
"x509_credential"
]
Expand All @@ -18,9 +15,9 @@ resolver = "2"
async-trait = "0.1"

[workspace.dependencies.tls_codec]
version = "0.3.0"
version = "0.4.0"
features = ["derive", "serde", "mls"]

[workspace.dependencies.tls_codec_derive]
version = "0.3.0"
version = "0.4.0"
features = ["derive", "serde", "mls"]
6 changes: 3 additions & 3 deletions basic_credential/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openmls_basic_credential"
version = "0.1.0"
version = "0.2.0"
authors = ["OpenMLS Authors"]
edition = "2021"
description = "A Basic Credential implementation for OpenMLS"
Expand All @@ -10,13 +10,13 @@ repository = "https://github.com/openmls/openmls/tree/main/basic_credential"
readme = "README.md"

[dependencies]
openmls_traits = { version = "0.1.0", path = "../traits" }
openmls_traits = { version = "0.2.0", path = "../traits" }
tls_codec = { workspace = true }
async-trait = { workspace = true }
serde = "1.0"

# Rust Crypto
ed25519-dalek = { version = "2.0.0-rc.2", features = ["rand_core"] }
ed25519-dalek = { version = "2.0.0-rc.3", features = ["rand_core"] }
p256 = "0.13"
p384 = "0.13"
secrecy = { version = "0.8", features = ["serde"] }
Expand Down
5 changes: 0 additions & 5 deletions cli/.gitignore

This file was deleted.

26 changes: 0 additions & 26 deletions cli/Cargo.toml

This file was deleted.

12 changes: 0 additions & 12 deletions cli/README.md

This file was deleted.

111 changes: 0 additions & 111 deletions cli/src/backend.rs

This file was deleted.

25 changes: 0 additions & 25 deletions cli/src/conversation.rs

This file was deleted.

54 changes: 0 additions & 54 deletions cli/src/identity.rs

This file was deleted.

Loading