-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtalks.html
124 lines (106 loc) · 4.96 KB
/
talks.html
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
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="Andrew Paverd - Talks">
<title>Andrew Paverd - Talks</title>
<!-- Latest compiled and minified CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css" />
<!-- Latest compiled JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</head>
<body>
<nav class="navbar navbar-expand-sm bg-dark" style="margin-bottom:30px">
<div class="container-md">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#myNavbar" aria-controls="myNavbar" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="publications.html">Publications</a>
</li>
<li class="nav-item">
<a class="nav-link" href="service.html">Service</a>
</li>
<li class="nav-item">
<a class="nav-link" href="students.html">Students</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="talks.html">Talks</a>
</li>
<li class="nav-item">
<a class="nav-link" href="teaching.html">Teaching</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<h3>Invited Talks</h3>
<table class="table">
<tbody>
<tr>
<td>July 2023</td>
<td>Evaluating Privacy in Machine Learning, <a href="https://enncore.github.io/events/secaiws/">Security for all in an AI enabled society</a></td>
</tr>
<tr>
<td>June 2023</td>
<td>Evaluating Privacy in Machine Learning, Keynote at <a href="https://dependablesecureml.github.io/">Dependable and Secure Machine Learning (DSML) workshop 2023</a></td>
</tr>
<tr>
<td>January 2019</td>
<td>Trustworthy and Accountable Function-as-a-Service using Intel SGX, <a href="http://talks.cam.ac.uk/talk/index/115540">Cambridge University Computer Laboratory Security Seminar</a></td>
</tr>
<tr>
<td>November 2018</td>
<td>Trust in a Digital World, Keynote at <a href="https://www.helsinki.fi/fi/unitube/video/0361c84a-cadd-46ce-a789-60f078ce4854">Trends in Cyber Security</a> [<a href="https://www.helsinki.fi/fi/unitube/video/0361c84a-cadd-46ce-a789-60f078ce4854">video</a>]</td>
</tr>
<tr>
<td>June 2018</td>
<td>Protecting Web Passwords from Rogue Servers using TEEs, TU Graz</td>
</tr>
<tr>
<td>November 2017</td>
<td>Machine Learning in the presence of Adversaries, Keynote at <a href="https://hackjunction.com/">Junction Hackathon</a> [<a href="talks/ML-Security-Junction2017.pdf">slides</a>, <a href="https://www.youtube.com/watch?v=X_yRwwyriKU#t=01h28m26s">video</a>]</td>
</tr>
<tr>
<td>October 2017</td>
<td>Protecting Web Passwords from Rogue Servers using TEEs, TU Delft [<a href="talks/Paverd-SafeKeeper-201710.pdf">slides</a>]</td>
</tr>
<tr>
<td>October 2017</td>
<td>The Circle Game: Scalable Private Membership Test using Trusted Hardware, TU Delft [<a href="talks/Paverd-The_Circle_Game-201710.pdf">slides</a>]</td>
</tr>
<tr>
<td>May 2017</td>
<td>Protecting Web Password Databases Using Intel SGX, Intel Technology Workshop on Embedded and IoT Security, Darmstadt</td>
</tr>
<tr>
<td>April 2017</td>
<td>Remote Attesattion: Building trust in things you can't see, Tutorial at ACM ASIACCS 2017 [<a href="talks/ASIACCS2017-Attestation.pdf">slides</a>]</td>
</tr>
<tr>
<td>January 2017</td>
<td>Enhancing Privacy using Trusted Hardware, Second INTERPOL Workshop on Privacy by Design, Lyon</td>
</tr>
<tr>
<td>October 2016</td>
<td>Existing and Emerging Business Models as impacted by the EU General Data Protection Regulation, Panel discussion at <a href="https://mappingtheinternet.eu/SGA">MAPPING Second General Assembly</a></td>
</tr>
<tr>
<td>January 2015</td>
<td>Trustworthy Remote Entities in the Smart Grid, Invited talk at the Department of Computer Engineering, Nanyang Technological University, Singapore</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>