Re: [webrtc-extensions] Post-Quantum Crypto (PQC) support in WebRTC (#207)

Current 🤔:
```
const pc = new RTCPeerConnection({cryptoOptions:{
  dtls: {
    groups: ["X25519MLKEM768"],
  }
}});
```
with a list of MTI IANA group names. `cryptoOptions` maps nicely to an existing implementation and can be extended to give more control over SRTP ciphers as requested in #113.

Combined with RTCTransportStats `dtlsGroup` that gives the algorithm identifier as integer because of [this](https://github.com/w3c/webrtc-extensions/issues/207#issuecomment-2782949975) and I'd rather not have a reverse mapping of group names.


-- 
GitHub Notification of comment by fippo
Please view or discuss this issue at https://github.com/w3c/webrtc-extensions/issues/207#issuecomment-3118344515 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Friday, 25 July 2025 14:57:15 UTC