Added crypto page.

Signed-off-by: Willy Sudiarto Raharjo <willysr@gmail.com>
This commit is contained in:
Willy Sudiarto Raharjo
2014-08-08 20:00:43 +07:00
parent 77a1d0f766
commit 067568207b
2 changed files with 79 additions and 4 deletions
+4 -4
View File
@@ -27,10 +27,10 @@ include "includes/navbar.html";
<h1>Gasal 2014/2015</h1> <h1>Gasal 2014/2015</h1>
</header> </header>
<ol> <ol>
<li>Network Administration</li> <li><a href="adminjar-ti/index.php">Network Administration</a></li>
<li>Computer Security</li> <li><a href="kakom-ti/index.php">Computer Security</a></li>
<li>Computer Technology</li> <li><a href="tekkom-ti/index.php">Computer Technology</a></li>
<li>Cryptography</li> <li><a href="kripto-ti/index.php">Cryptography</a></li>
</ol> </ol>
</article> </article>
<article> <article>
+75
View File
@@ -0,0 +1,75 @@
<!DOCTYPE html>
<head>
<title>Willy Sudiarto Raharjo - Cryptography</title>
<meta name="keywords" content="Willy, Willy Sudiarto Raharjo, Willy SR, WillySR, UKDW, Dosen, Universitas Kristen Duta Wacana, Kriptografi, Teknik Informatika" />
<meta name="description" content="Situs ini berisi halaman materi untuk kelas Kriptografi Universitas Kristen Duta Wacana" />
<link rel="icon" href="../images/favicon.ico" type="image/ico" />
<style type="text/css">
@import "../includes/index.css";
@import "../includes/normalize.css";
</style>
</head>
<body>
<?php
include "../includes/functions.php";
?>
<header role="banner">
<?php
include "../includes/courses.php";
?>
</header>
<section class="title">Cryptography</section>
<section class="sidebar">
<header>
<h3>Jadwal</h3>
</header>
<aside>
<p>Grup A<br/>Hari Selasa<br/>Jam 13.30<br/>Ruang D.3.1</p>
</aside>
</section>
<section class="classinfo">
<section class="description">
<header>
<h1>PENGAJAR</h1>
</header>
<p>Erick Purwanto, S.Kom., M. Comp<br/>Willy Sudiarto Raharjo, S.Kom., M.Cs</a></p>
</section>
<section class="description">
<header>
<h1>PENGANTAR</h1>
</header>
<p>Matakuliah ini memperkenalkan konsep Kriptografi mulai dari sejarah, enkripsi simetris dan asimetris, integritas pesan, tandatangan dan sertifikat digital, protokol identifikasi dan beberapa topik tambahan seperti zero knowledge, oblivious transfer, two party computation, and multi party computation.</p>
</section>
</section>
<section class="material">
<header>
<h1>MATERI</h1>
</header>
<ol>
<li>Syllabus</li>
<li>Course Overview</li>
<li>Intro of Crypto: history, terminology of security, review discrete probability</li>
<li>Symmetric Key Encryption: One Time Pad, Stream Ciphers, Block Ciphers, and their Attacks</li>
<li>Message Integrity: MACs, Collision Resistant Hashing, Birthday Attack</li>
<li>Authenticated Encryption: Construction Cipher+MAC, Active Attacks</li>
<li>Key Derivations, Deterministic Encryptions, Tweakable Encryptions, Format Preserving Encryptions</li>
<li>Public Key (Asymmetric) Encryption: Number Theory, PKE from Trapdoor Permutations (RSA), PKE from Diffie-Hellman (ElGamal)</li>
<li>Digital Signatures and Certificates</li>
<li>Identification Protocols, Authenticated Key Exchange, TLS Key Exchange</li>
<li>Zero Knowledge Protocols and Proofs of Knowledge</li>
<li>Privacy Mechanisms: Group Signatures and Credential Systems</li>
<li>Private Information Retrieval and Oblivious Transfer</li>
<li>Two Party Computation: Yao's Protocol and Applications</li>
<li>Multi Party Computation</li>
</ol>
</section>
<section class="references">
<ol>
<li>Introduction to Modern Cryptography (Jonathan Katz, Yehuda Lindell, Chapman &amp;Hall)</li>
</section>
<?php
include "../includes/footer.php";
?>
</body>
</html>