Privacy is essential, especially in communications on the internet. We want to ensure only the people allowed can participate in a video call. Luckily, WebRTC media (audio/video) streams are encrypted by default when making peer-to-peer connections using Secure Real-time Transport Protocol (SRTP) in browsers. This is what happens when you create a Vonage Video session with the media mode set to relayed.
This works great when just two to three participants are on a video call. The bandwidth needed to send media to each participant dramatically increases as the number of participants increases which can decrease the quality of the streams.
For many participants (multiparty) in a video call, Vonage Video has a routed media mode. Here the created session uses the OpenTok Media Router to route the media streams between clients (still encrypted with STRP), thus saving on the bandwidth required.
What if we need to encrypt the media between the participants going through the OpenTok Media Router? This is where the new End-To-End Encryption feature comes into play. A participant’s audio and video streams are encrypted with a 2nd layer encryption secret set at the client, sent through the OpenTok Media Router encrypted, and decrypted on the receiving client. Since the media is encrypted while passing through the media router, archiving, live streaming broadcasts, experience composer, audio connector, and SIP Interconnect are not available since they require decoding media.
How It Works
It all starts on the server where a session is created with the media mode set to routed and the end-to-end encryption key set to true. When a client joins the session, it sets the encryption secret for its media. Every client in the session that has the same encryption secret will be able to decode the others’ media.
Try It Out
Before you can use the demo application, you will need to add the end-to-end encryption feature in your Vonage Video Account.
To take a look at some code and deploy the NodeJS-based demo application to StackBlitz, visit the GitHub repo
What’s Next?
Read more about the Vonage Video API End-To-End Encryption feature in the documentation. If you have any questions or comments, please let us know in our Community Slack Channel.