76 lines
2.8 KiB
PHP
76 lines
2.8 KiB
PHP
<!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 &Hall)</li>
|
|
</section>
|
|
<?php
|
|
include "../includes/footer.php";
|
|
?>
|
|
</body>
|
|
</html>
|