1
0
Fork 0

djb elliptic-curve talk

This commit is contained in:
Daniel Kempkens 2014-12-31 18:59:44 +01:00
parent a15efbe4ad
commit d7bdb3f701
3 changed files with 26 additions and 1 deletions

View file

@ -6,7 +6,7 @@ layout: default
<h1 class="post-title">{{ page.title }}</h1>
<span class="post-date">{{ page.date | date_to_string }}</span>
<p>&#9875; <a href="{{ page.link }}" rel="external">{{ page.link }}</a></p>
<p>&#9875; <a href="{{ page.link }}" rel="external">{{ page.link | hostname }}</a></p>
{{ content }}
</div>

12
_plugins/hostname.rb Normal file
View file

@ -0,0 +1,12 @@
require 'uri'
module Jekyll
module HostnameFilter
def hostname(input)
parsed_uri = URI.parse(input)
parsed_uri.host
end
end
end
Liquid::Template.register_filter(Jekyll::HostnameFilter)

View file

@ -0,0 +1,13 @@
---
layout: link
title: A Gentle Introduction to Elliptic-Curve Cryptography
date: 2014-12-31 16:33:00 CEST
category: links
link: http://media.ccc.de/browse/congress/2014/31c3_-_6369_-_en_-_saal_1_-_201412272145_-_ecchacks_-_djb_-_tanja_lange.html#video
---
A talk by djb and Tanja Lange.
> This talk will explain how to work with elliptic curves constructively to obtain secure and efficient implementations, and will highlight pitfalls that must be avoided when implementing elliptic-curve crypto (ECC). The talk will also explain what all the buzz in curve choices for TLS is about. This talk does not require any prior exposure to ECC.
The slides can be found [here](https://events.ccc.de/congress/2014/Fahrplan/system/attachments/2502/original/20141227-twopage.pdf) (CAcert) and the example source code is available [here](http://ecchacks.cr.yp.to).