80 lines
2.8 KiB
PHP
80 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 <br/>Hari <br/>Jam <br/>Ruang </p>
|
|
</aside>
|
|
</section>
|
|
<section class="classinfo">
|
|
<section class="notice">
|
|
<header>
|
|
<h1>PEMBERITAHUAN</h1>
|
|
</header>
|
|
<p>Bagi yang hendak mengambil matakuliah ini, Anda <strong>harus sudah lulus matakuliah keamanan komputer</strong>.</p>
|
|
</section>
|
|
<section class="description">
|
|
<header>
|
|
<h1>PENGAJAR</h1>
|
|
</header>
|
|
<p>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, multi party computation, digital cash, e-voting, dan anonymous connection.</p>
|
|
</section>
|
|
</section>
|
|
|
|
<section class="material">
|
|
<header>
|
|
<h1>MATERI</h1>
|
|
</header>
|
|
<ol>
|
|
<li>Syllabus</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>Advanced materials</li>
|
|
</ol>
|
|
</section>
|
|
<section class="references">
|
|
<header>
|
|
<h1>REFERENSI</h1>
|
|
</header>
|
|
<ol>
|
|
<li>Introduction to Modern Cryptography (Jonathan Katz, Yehuda Lindell, Chapman & Hall)</li>
|
|
<li>Handbook of Applied Cryptography (Alfred J. Menezes, Paul C. van Oorschot, Scott A. Vanstone, CRC Press)</li>
|
|
</section>
|
|
<?php
|
|
include "../includes/footer.php";
|
|
?>
|
|
</body>
|
|
</html>
|