Skip to content
Snippets Groups Projects
Commit 7d667c6d authored by mazenovi's avatar mazenovi
Browse files

enahnce ssl

parent a27f5597
No related branches found
No related tags found
Loading
......@@ -11,5 +11,5 @@
* Chiffre les messages
* Graph orienté de confiance
X.509 centralise
PGP distribue
X.509 centralise la confiance sur les CA
PGP distribue la confiance entre utilisateurs
This diff is collapsed.
......@@ -4,7 +4,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>PGP / GPG</title>
<title>SSL</title>
<link rel="stylesheet" href="../../node_modules/reveal.js/css/reveal.css">
<link rel="stylesheet" href="../../node_modules/reveal.js/css/theme/white.css">
......@@ -48,7 +48,18 @@
center: false,
dependencies: [
{ src: '../../node_modules/reveal.js/plugin/markdown/marked.js' },
{ src: '../../node_modules/reveal.js/plugin/markdown/markdown.js' },
{ src: '../../node_modules/reveal.js/plugin/markdown/markdown.js',
condition: function() { return !!document.querySelector( '[data-markdown]' ); },
callback: function() {
Array.prototype.forEach.call(document.querySelectorAll('section > li'), function(ele){
var fragIndex = ele.innerHTML.indexOf("--")
if (fragIndex != -1){
ele.innerHTML = ele.innerHTML.replace("--", "");
ele.className = 'fragment';
}
});
}
},
{ src: '../../node_modules/reveal.js/plugin/notes/notes.js', async: true },
{ src: '../../node_modules/reveal.js/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment