Skip to content

Commit e0dfcb6

Browse files
committed
docs: sync README and changelog
1 parent 6433a0f commit e0dfcb6

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Unreleased
22

33
* Bump MSRV to 1.85.0 #75
4+
* Add DTLS 1.2 ChaCha20-Poly1305 and X25519 support #71
45

56
# 0.4.0
67

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ Three constructors control which DTLS version is used:
3333
- **Cipher suites (TLS 1.2 over DTLS)**
3434
- `ECDHE_ECDSA_AES256_GCM_SHA384`
3535
- `ECDHE_ECDSA_AES128_GCM_SHA256`
36+
- `ECDHE_ECDSA_CHACHA20_POLY1305_SHA256`
3637
- **Cipher suites (TLS 1.3 over DTLS)**
3738
- `TLS_AES_128_GCM_SHA256`
3839
- `TLS_AES_256_GCM_SHA384`
@@ -105,6 +106,7 @@ fn example_event_loop(mut dtls: Dtls) -> Result<(), dimpl::Error> {
105106
Output::ApplicationData(_data) => {
106107
// Deliver plaintext to application
107108
}
109+
_ => {}
108110
}
109111
}
110112

0 commit comments

Comments
 (0)