summaryrefslogtreecommitdiffstats
path: root/rfc5077-server.html
blob: 7747e68584df2b47966fd6803d996cc576b4566d (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
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js"></script>
<script src="jquery.jsonp.js"></script>
<script src="rfc5077-server.js"></script>
<style>
  * { margin: 0; padding: 0; }
  body { font-family: sans-serif; }
  h1 { color: #DDD;
       width: 100%;
       background-color: #222;
       background-image: -moz-linear-gradient(center top, #222, #333);
       background-image: -ms-linear-gradient(center top, #222, #333);
       background-image: -o-linear-gradient(center top, #222, #333);
       background-image: -webkit-gradient(linear, center top, left bottom, from(#222), to(#333)); 
       background-image: -webkit-linear-gradient(center top, #222, #333);
       background-image: linear-gradient(center top, #222, #333);
       border-bottom: 3px solid #FF7F00; }
  h1 span { display: block; padding: 0.5em 5%; }
  ul { max-width: 30em; padding: 1em 10%; list-style: none; }
  .step { padding: 0.8em 1em;
          display: none; }
  .step0 { display: list-item; }
  .current { background-color: #E5FFCC;
             font-weight: bold; }
  .error { background-color: #FFA5AC;
           font-weight: bold; }
   code { font-family: Inconsolatas, monospace; 
          background-color: #FFEFD0; }
</style>
<title>Test for RFC 5077 support</title>
</head>
<body>
  <h1><span>Test for RFC 5077 support</span></h1>

      <ul>
	<li class="step step0 running current">
	  You need to enable Javascript to make this page work.
	</li>

	<li class="step step0 done">
	  Your user agent is <code id="ua">?</code>.
	</li>

	<li class="step step1 running">
	  We are fetching server ports.
	</li>

	<li class="step step1 done">
	    Before starting, you need to ensure that you accepted the
	    certificate available for
	    ports <span id="ports"></span>.
	</li>

	<li class="step step2 running">
	  <form>
	    Once you are ready, click the
	    <input id="start" type="button" value="start"> button.
	  </form>
	</li>
	<li class="step step2 done">
	  OK, starting tests.
	</li>

	<li class="step step3 running">
	  Checking used cipher suite.
	</li>
	<li class="step step3 done">
	    Your browser is actually using <code id="cipher">?</code> cipher suite and <code id="version">?</code>.
	</li>

	<li class="step step4 running">
	  Checking session resumption without cache nor tickets.
	</li>
	<li class="step step4 done">
	  Your browser <strong id="resume1">?</strong> support session resume
	  without cache and without tickets (and it should not).
	</li>

	<li class="step step5 running">
	  Checking support for session resume <strong>without</strong> tickets.
	</li>
	<li class="step step5 done">
	  Your browser <strong id="resume2">?</strong> support session resume
	  without tickets.
	</li>

	<li class="step step6 running">
	  Checking support for session resume <strong>with</strong> tickets.
	</li>
	<li class="step step6 done">
	  Your browser <strong id="resume3">?</strong> support session resume
	  with tickets.
	</li>

	<li class="step step7 running">
	  Checking support for session resume with both cache and tickets.
	</li>
	<li class="step step7 done">
	  Your browser <strong id="resume4">?</strong> support session resume
	  with both cache and tickets.
	</li>

	<li class="step step8 running">
	    That's all!
	</li>

	<li class="step error">
	  Sorry, a fatal error shot us.
	</li>

      </ul>

</body>
</html>