forked from hakimel/reveal.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (88 loc) · 4.43 KB
/
Copy pathindex.html
File metadata and controls
102 lines (88 loc) · 4.43 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
<!doctype html>
<html lang="en">
<head>
<title>Cryptic</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>reveal.js</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<!-- <link rel="stylesheet" href="dist/theme/beige.css">-->
<link rel="stylesheet" href="dist/theme/black.css">
<!-- <link rel="stylesheet" href="dist/theme/night.css">-->
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css">
<!-- <link rel="stylesheet" href="plugin/highlight/github.css">-->
<!-- <link rel="stylesheet" href="plugin/highlight/zenburn.css">-->
<!-- <link rel="stylesheet" href="plugin/highlight/higlight.css">-->
</head>
<body>
<div class="reveal">
<div class="slides">
<!-- <section data-markdown="slides/intro/title.md"-->
<!-- data-separator="^\n\n\n"-->
<!-- data-separator-vertical="^\n\n"-->
<!-- data-separator-notes="^Note:">-->
<!-- </section>-->
<section data-include="slides/intro/title.html"></section>
<section data-include="slides/intro/not-bitcoin.html"></section>
<section data-include="slides/intro/cryptography.html"></section>
<section data-include="slides/intro/who-we-are.html"></section>
<section data-include="slides/intro/reasons.html"></section>
<section data-include="slides/intro/usage.html"></section>
<section data-include="slides/details/codec.html"></section>
<section data-include="slides/details/codec-integrations.html"></section>
<section data-include="slides/details/details.html"></section>
<section data-include="slides/details/encrypt.html"></section>
<section data-include="slides/details/decrypt.html"></section>
<section data-include="slides/crypto/implementing-crypto.html"></section>
<section data-include="slides/crypto/reverse.html"></section>
<section data-include="slides/crypto/caesar.html"></section>
<section data-include="slides/crypto/manifest-caesar.html"></section>
<section data-include="slides/crypto/types.html"></section>
<section data-markdown="slides/provided/provided-cryptos.md"></section>
<section data-include="slides/provided/aes.html"></section>
<section data-include="slides/provided/rsa.html"></section>
<section data-include="slides/provided/ecies.html"></section>
<section data-include="slides/provided/implementations.html"></section>
<section data-include="slides/provided/symmetric-trait.html"></section>
<section data-include="slides/provided/aes-impl.html"></section>
<section data-include="slides/provided/asymmetric-trait.html"></section>
<section data-include="slides/provided/rsa-impl.html"></section>
<section data-include="slides/provided/hybrid.html"></section>
<section data-include="slides/provided/rsa-aes-encrypt.html"></section>
<section data-include="slides/provided/rsa-aes-decrypt.html"></section>
<section data-include="slides/provided/ecies-impl.html"></section>
<section data-include="slides/outro/summary.html"></section>
<section data-include="slides/outro/stanford-course.html"></section>
<section data-include="slides/outro/scalacrypto.html"></section>
<section data-include="slides/outro/last.html"></section>
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script>
// Add the HTML include plugin
let includes = document.querySelectorAll('[data-include]');
includes.forEach(include => {
let file = include.getAttribute('data-include');
fetch(file)
.then(response => response.text())
.then(text => {
include.innerHTML = text;
});
});
Reveal.initialize({
hash: true,
plugins: [RevealMarkdown, RevealHighlight, RevealNotes],
// Enable the HTML include plugin
dependencies: [
{ src: 'plugin/external/external.js', condition: function() { return !!document.querySelector('[data-include]'); } }
],
slideNumber: true
});
</script>
</body>
</html>