-
-
Notifications
You must be signed in to change notification settings - Fork 411
DTLS: crypto_ccm.rs implementation #22
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
Conversation
Codecov Report
@@ Coverage Diff @@
## master #22 +/- ##
==========================================
- Coverage 48.45% 48.34% -0.12%
==========================================
Files 136 137 +1
Lines 7366 7383 +17
Branches 1495 1497 +2
==========================================
Hits 3569 3569
- Misses 2782 2799 +17
Partials 1015 1015
Continue to review full report at Codecov.
|
@rainliu The test case doesn't exist in Pion, so please let me know if you don't need it as it can be covered by another test case. I'll remove it. Coverage check fail seems to be related to rust-lang/rust#79487 . |
@zeroclock, thank you for adding crypto_ccm.rs and corresponding test case. |
Prevent UDP mux from removing connections
* update deps + loosen some requirements rules: - for crates that are below v1.0 -> specify the precise version - If the code uses a feature that was added for example in X 0.3.17, then you should specify 0.3.17, which actually means "0.3.y where y >= 17" - for crates the are above or equal v1.0 -> specify only major version if the crate's API is minimal and won't change between minor versions OR specify major&minor versions otherwise tested with https://github.com/taiki-e/cargo-minimal-versions * fix warnings * bump min version error: package `pkcs8 v0.9.0` cannot be built because it requires rustc 1.57 or newer, while the currently active rustc version is 1.56.1 * update util version * use cargo cache in minimal-versions job * Revert "use cargo cache in minimal-versions job" This reverts commit d58d33f175e7bc103347e7a80548ae64775713b5. * update oid-registry, x509-parser and der-parser * update rcgen * update x509-parser and restrict hkdf and curve25519-dalek versions so minimal-dependencies job passes on CI
related issue: #13