summaryrefslogtreecommitdiff
path: root/cardiff2015/slides/index.html
blob: 5f7f6a6c706ee5d76ab119204e839861947bb715 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">

<title>LEAP/Pixelated Introduction</title>

<meta name="description" content="">
<meta name="author" content="Meskio (LEAP) and Varac (Pixelated)">
<meta name="generator" content="reveal-ck 3.3.0">

<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">

<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/night.css" id="theme">

<!-- Code syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">

<link rel="stylesheet" href="css/reveal-ck.css">


<!-- Printing and PDF exports -->
<script>
  var link = document.createElement( 'link' );
  link.rel = 'stylesheet';
  link.type = 'text/css';
  link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
  document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>

<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->

  </head>

  <body>
    <div class="reveal">
  <!-- Any section element inside of this container is displayed as a slide -->
  <div class="slides">
    <style>
  .reveal h1 {
    margin-bottom: 30px;
  }
  .reveal h3 li {
    margin-bottom: 10px;
  }
  .reveal h1, .reveal h3, .reveal p, .reveal li, .reveal .p {
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 1)
  }
  .left-column {
    display: block;
    width: 50%;
    float: left;
  }
  .right-column {
    width: 50%;
    float: left;
  }
  .row {
    display: table;
    width: 100%;
  }
  .left {
    text-align: left !important;
  }
  ul.plain {
    list-style-type: none;
  }
  .reveal p, .reveal .p, ul.plain li {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .reveal li {
    margin-top: 10px;
    margin-bottom: 10px;
  }
</style>
<section data-background-size="80%" data-background="images/leap-pixelated.svg">
  <div class="left-column">
    <h3>LEAP Encryption Access Project</h3>
  </div>
</section>
<section>
  <h1>Bring back the 1990s!</h1>
</section>
<section>
  <h1>What is Federation?</h1>
  <h3>
    <ul>
      <li>user → provider → provider → user</li>
      <li>eg: SMTP, XMPP</li>
    </ul>
  </h3>
</section>
<section>
  <h1>Better federation</h1>
  <h3>
    <ul>
      <li>The users should be protected from the provider.</li>
      <li>The provider should be protected from users.</li>
    </ul>
  </h3>
</section>
<section>
  <h1>What does<br>LEAP do?</h1>
  <ol>
    <li>
<b>LEAP Platform:</b><br>a toolkit to make it easy for you to run a service provider.</li>
    <li>
<b>New protocols:</b><br>so that users don't need to trust the provider.</li>
    <li>
<b>Bitmask client:</b><br>a client that works smoothly with any compatible provider.</li>
  </ol>
</section>
<section>
  <h1>LEAP Platform</h1>
  <pre><code class="bash" data-trim>sudo gem install leap_cli
leap new example --domain example.org
cd example
leap add-user --self
leap cert ca
leap cert dh
leap cert csr
leap node add blueberry services:openvpn \
     ip_address:1.1.1.1 openvpn.gateway_address:1.1.1.2
leap node add raspberry services:couchdb,webapp \
     ip_address:1.1.1.3
leap init node
leap deploy
</code></pre>
</section>
<section>
  <h1>New Protocols</h1>
  <ul>
    <li>
<b>Soledad:</b> searchable client-encrypted synchronized database.</li>
    <li>
<b>Bonafide:</b> secure user registration, authentication, password change, etc.</li>
    <li>
<b>Key management:</b> precise rules for OpenPGP best practices, automated.</li>
  </ul>
</section>
<section>
  <h1>Bitmask client</h1>
  <div class="left-column">
    <img src="images/bitmask-icon.png" style="height:296px; width: 296px">
  </div>
  <div class="right-column">
    <img src="images/bitmask-main-window.jpg">
  </div>
</section>
<section>
  <h3>Current Services: VPN</h3>
  <ul>
    <li>Easy to use.</li>
    <li>Route all your internet trafic through an encrypted channel.</li>
    <li>Prevent eavesdropping (thiefs in the public network, police, ...).</li>
    <li>Circunvent internet censorship.</li>
    <li>Prevent leaks (DNS, IPv6, ...).</li>
  </ul>
</section>
<section>
  <h3>Current Services: email</h3>
  <p>
    <em>Work in progress</em>
  </p>
  <ul>
    <li>Easy to use.</li>
    <li>End-to-end encryption.</li>
    <li>Automatic key discovery and validation.</li>
    <li>Backwards compatible with email and current OpenPGP usage.</li>
    <li>Service provider has no access to user data.</li>
    <li>Strong protection for metadata, when supported.</li>
    <li>Cloud synchronized for high availability on multiple devices.</li>
  </ul>
</section>
<section data-background-size="50%" data-background="./images/pixelated-white-small.svg"></section>
<section>
  <h1>Our goals:</h1>
  <ul>
    <li>Mass adoption</li>
    <li>Increase the cost of dragnet surveillance</li>
  </ul>
</section>
<section data-background-size="50%" data-background="./images/one-encr-mail.jpg"></section>
<section data-background-size="50%" data-background="./images/many-encr-mails.jpg"></section>
<section>
  <h1>Pixelated Useragent</h1>
  <ul>
    <li>Bitmask client and Email Client combined.</li>
    <li>Modern, good looking UI.</li>
    <li>Integrated search, search index encrypted</li>
    <li>Tagging</li>
  </ul>
</section>
<section data-background-size="75%" data-background="./images/pix-useragent.png"></section>
<section>
  <h1>Activist Setup</h1>
  <ul>
    <li>Useragent needs to get installed locally</li>
    <li>Private Keys on local device</li>
  </ul>
</section>
<section>
  <h1>Organisation Setup</h1>
  <ul>
    <li>Multi-User encrypted Webmail</li>
    <li>No Installation, access via browser</li>
    <li>Private Keys on the server</li>
    <li>Activist Setup possible on individual choice</li>
  </ul>
</section>
<section data-background-size="75%" data-background="./images/pix-architecture2.png"></section>
<section data-background-size="50%" data-background="./images/pix-architecture.png"></section>
<section>
  <h1>Metadata</h1>
  <ul>
    <li>Simple Mail Transfer Protocol from 1982 (!)</li>
    <li>Email exposes lots of metadata (Date:, From:, To:, Subject:, Useragent:)</li>
    <li>"Memory Hole" proposal to hide metadata in gpg encrypted mail</li>
    <li>Enforce Transport Security whenever possible.</li>
  </ul>
</section>
<section>
  <ul>
    <li>
  </ul>
</section>
<section>
  <div class="left">
    <ul class="plain">
      <li>
        LEAP Encryption Access Project <a href="https://github.com/leapcode" class="user-mention">@leapcode</a>
        <a href="https://leap.se">https://leap.se</a>
      </li>
      <li>
        Bitmask App <a href="https://github.com/bitmasknet" class="user-mention">@bitmasknet</a>
        <a href="https://bitmask.net">https://bitmask.net</a>
      </li>
    </ul>
    <p> </p>
    <p> </p>
    <ul class="plain">
      <li>
        Pixelated Project <a href="https://github.com/pixelatedteam" class="user-mention">@pixelatedteam</a>
        <a href="https://pixelated-project.org">https://pixelated-project.org</a>
      </li>
      <li>
        team@pixelated-project.org<br>
        504A 14EA 39DE 1800 B676 9619 FF0E A8AE D649 7991
      </li>
    </ul>
  </div>
</section>

  </div>
</div>

<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>

<script>
  (function() {
  function extend( a, b ) {
    for(var i in b) {
      a[i] = b[i];
    }
  }
  var baseOptions = {
    transition: 'fade',

    dependencies: [
      { src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
      { src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
      { src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
      { src: 'plugin/highlight/highlight.js', async: true, condition: function() { return !!document.querySelector( 'pre code' ); }, callback: function() { hljs.initHighlightingOnLoad(); } },
      { src: 'plugin/zoom-js/zoom.js', async: true },
      { src: 'plugin/notes/notes.js', async: true }
    ]
  };
  var configOptions = {"controls":true,"progress":true,"history":true,"center":true}
  var initializeOptions = {};
  extend(initializeOptions, baseOptions);
  extend(initializeOptions, configOptions);
  Reveal.initialize(initializeOptions);
})();

</script>

  </body>
</html>