|
@@ -1,6 +1,6 @@
|
1
|
1
|
# Jitsi Meet - Secure, Simple and Scalable Video Conferences
|
2
|
2
|
|
3
|
|
-Jitsi Meet is an open-source (Apache) WebRTC JavaScript application that uses [Jitsi Videobridge](https://jitsi.org/videobridge) to provide high quality, scalable video conferences. You can see [Jitsi Meet in action](http://youtu.be/7vFUVClsNh0) here at the session #482 of the VoIP Users Conference.
|
|
3
|
+Jitsi Meet is an open-source (Apache) WebRTC JavaScript application that uses [Jitsi Videobridge](https://jitsi.org/videobridge) to provide high quality, [secure](#security) and scalable video conferences. You can see [Jitsi Meet in action](http://youtu.be/7vFUVClsNh0) here at the session #482 of the VoIP Users Conference.
|
4
|
4
|
|
5
|
5
|
You can also try it out yourself at https://meet.jit.si .
|
6
|
6
|
|
|
@@ -98,6 +98,21 @@ see our [guidelines for contributing](CONTRIBUTING.md).
|
98
|
98
|
|
99
|
99
|
Jitsi Meet provides a very flexible way of embedding it in external applications by using the [Jitsi Meet API](doc/api.md).
|
100
|
100
|
|
|
101
|
+## Security
|
|
102
|
+WebRTC today does not provide a way of conducting multiparty conversations with
|
|
103
|
+end-to-end encryption. As a matter of fact, unless you consistently vocally
|
|
104
|
+compare DTLS fingerprints with your peers, the same goes for one-to-one calls.
|
|
105
|
+As a result when using a Jitsi Meet instance, your stream is encrypted on the
|
|
106
|
+network but decrypted on the machine that hosts the bridge.
|
|
107
|
+
|
|
108
|
+The Jitsi Meet architecture allows you to deploy your own version, including
|
|
109
|
+all server components, and in that case your security guarantees will be roughly
|
|
110
|
+equivalent to these of a direct one-to-one WebRTC call. This is what's unique to
|
|
111
|
+Jitsi Meet in terms of security.
|
|
112
|
+
|
|
113
|
+The [meet.jit.si](https://meet.jit.si) service is maintained by the Jitsi team
|
|
114
|
+at [Atlassian](https://atlassian.com).
|
|
115
|
+
|
101
|
116
|
## Mobile app
|
102
|
117
|
Jitsi Meet is also available as a React Native app for Android and iOS.
|
103
|
118
|
Instructions on how to build it can be found [here](doc/mobile.md).
|