-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
121 lines (103 loc) · 4.16 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>TACK :: Trust Assertions for Certificate Keys</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Moxie Marlinspike">
<!-- Le styles -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- <style type="text/css"> -->
<!-- body { -->
<!-- padding-top: 60px; -->
<!-- padding-bottom: 40px; -->
<!-- } -->
<!-- </style> -->
<link href="css/site.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body class="home">
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="index.html">TACK</a>
<ul class="nav">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="draft.html">Technical Details</a></li>
<li><a href="#resources">Resources</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<!-- Main hero unit for a primary marketing message or call to action -->
<div class="hero-unit">
<div class="jump">
<h1 style="color: #ffffff;">TACK, for pinning.</h1>
<br>
<p style="color: #ffffff;">
A proposal for a dynamically activated public key pinning framework that provides
a layer of indirection away from Certificate Authorities, but is fully backwards
compatible with existing CA certificates, and doesn't require sites to modify
their existing certificate chains.
<p><a class="btn btn-primary btn-large" href="draft.html">Read Internet Draft »</a></p>
</div>
</div>
<section class="row features">
<h2>Flexible, Simple, Secure</h2>
<p class="intro">
Designed to be easy to incorporate into existing TLS servers and clients,
with keys that are simple to manage.
</p>
<hr id="resources"/>
<div class="span6">
<div class="img"><img src="img/book.svg"/></div>
<h3>The Internet Draft</h3>
<p>We've submitted an Internet Draft to the IETF with TACK's technical details.</p>
<p><a class="btn" href="draft.html">Check it out »</a></p>
</div>
<div class="span6">
<div class="img"><img src="img/gears.svg"/></div>
<h3>The code</h3>
<p>We've written some reference TACK implementations for OpenSSL, Apache, and tlslite,
as well as the command-line tools necessary to generate and manage TACK keys.</p>
<p><a class="btn" href="https://github.com/tack">Start hacking »</a></p>
</div>
<div class="span6">
<div class="img"><img src="img/at.svg"/></div>
<h3>The project list</h3>
<p>We have a mailing list for discussing TACK development.</p>
<p><a class="btn" href="https://lists.riseup.net/www/info/tack">Join up »</a></p>
</div>
<div class="span6">
<div class="img"><img src="img/ethernet.svg"/></div>
<h3>The test server</h3>
<p>We have a test server running Apache that supports TACK, which you can visit
with your browser.</p>
<p><a class="btn" href="https://test.tack.io">Test it »</a></p>
</div>
</section>
<hr>
</div> <!-- /container -->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="js/bootstrap.js"></script>
<script type="text/javascript">
var clicky_site_ids = clicky_site_ids || [];
clicky_site_ids.push(66589389);
(function() {
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = '//static.getclicky.com/js';
( document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0] ).appendChild( s );
})();
</script>
<noscript><p><img alt="Clicky" width="1" height="1" src="//in.getclicky.com/66589389ns.gif" /></p></noscript>
</body>
</html>