-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·112 lines (99 loc) · 5.7 KB
/
index.html
File metadata and controls
executable file
·112 lines (99 loc) · 5.7 KB
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
<!DOCTYPE HTML>
<!--
Synchronous by TEMPLATED
templated.co @templatedco
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
-->
<html>
<head>
<title>Nescio project</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<link href='https://fonts.googleapis.com/css?family=Lato:300,400,700,900' rel='stylesheet' type='text/css'>
<!--[if lte IE 8]><script src="/js/html5shiv.js"></script><![endif]-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="/js/skel.min.js"></script>
<script src="/js/skel-panels.min.js"></script>
<script src="/js/init.js"></script>
<noscript>
<link rel="stylesheet" href="/css/skel-noscript.css" />
<link rel="stylesheet" href="/css/style.css" />
</noscript>
<!--[if lte IE 8]><link rel="stylesheet" href="/css/ie/v8.css" /><![endif]-->
<!--[if lte IE 9]><link rel="stylesheet" href="/css/ie/v9.css" /><![endif]-->
</head>
<body class="homepage">
<div id="wrapper">
<!-- Header -->
<div id="header">
<div class="container">
<!-- Logo -->
<div id="logo">
<h1><a href="#">Nescio project</a></h1>
<span>Description and anonymization of Binary Data Formats</span>
</div>
<!-- Nav -->
<nav id="nav">
<ul>
<li class="active"><a href="index.html">Homepage</a></li>
<li><a href="bird.html">Bird</a></li>
<li><a href="nescio.html">Nescio</a></li>
<li><a href="usecases.html">Use cases</a></li>
<li><a href="examples.html">Example</a></li>
<li><a href="installing.html">Installing</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</div>
<!-- /Header -->
<div id="page">
<div class="container">
<div class="row">
<div class="12u">
<section id="content" >
<header>
<h2>Overview</h2>
</header>
<p><strong>How can we improve the privacy and anonymity of the data we exchange via the Internet?</strong></p>
<p>The project A DSL for Anonymization of Network Traffic aims to develop an open-source, user-friendly development environment for making formal descriptions of network protocols that make it possible to automatically generate, maintain and analyze privacy and analysis tools in the field of privacy. The emphasis in this project is on generating anonymization tools.</p>
<p>A DSL is a specialized language to write high-level problem descriptions. In this project we have created:
<ul class="style1">
<li><strong><a href="bird.html">Bird:</a></strong> A DSL to describe binary file formats such as BMP, PNG or JPEG. Such a description of a file format is declarative: it describes how the format looks like but does not describe how it can be parsed.</li>
<li><strong><a href="nescio.html">Nescio:</a></strong> A DSL to describe anonymization rules. Here again, the description is declarative: it describes which parts of a file have to be anonymized but not how this is implemented.</li>
</ul>
<p>
We have developed Bird and Nescio as open source projects, they are available at <a href="https://github.com/SWAT-engineering/bird">SWAT-engineering/bird <img src="/images/GitHub-Mark-64px.png" height="16px" width="16px" /></a> and <a href="https://github.com/SWAT-engineering/nescio">SWAT-engineering/nescio <img src="/images/GitHub-Mark-64px.png" height="16px" width="16px" /></a>.
</p>
<p>
</p>
<hr>
<center><font size="2">This project was funded by <a href="https://www.sidnfonds.nl/">SIDNfonds</a> and has been realized by <a href="https://www.swat.engineering/">SWAT.engineering</a> in cooperation with <a href="https://www.forensischinstituut.nl/">National Forensics Institute</a>.</font></center>
<p>
</p>
<p>
</p>
<center>
<table style="width:100%; margin-top: 2em">
<tr>
<td style="text-align:center;vertical-align:center"><a href="https://www.sidnfonds.nl/"><img src="images/logo-sidn-fonds.jpg" height="55px"/></a></td>
<td style="text-align:center;vertical-align:center"><a href="https://www.swat.engineering"><img src="images/swat_engineering_logo.svg" height="75px"/></a></td>
<td style="text-align:center;vertical-align:bottom"><a href="https://www.forensischinstituut.nl"><img src="images/logo-nfi.svg" height="90px"/></a></td>
</tr>
</table>
</center>
</section>
</div>
</div>
</div>
</div>
<!-- Copyright -->
<div id="copyright">
<div class="container">
Design: <a href="http://templated.co">TEMPLATED</a>
</div>
</div>
</div>
</body>
</html>