-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
32 lines (28 loc) · 1.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
layout: default
title: timoh's blog posts and projects
---
<div id="home">
<h2>Blog Posts</h2>
<ul>
{% for post in site.posts %}
{% unless post.draft %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endunless %}
{% endfor %}
</ul>
<h2>Articles</h2>
<ul>
<li><span>29 Aug 2012</span> » <a href="http://websec.io/2012/08/29/TCrypto-Encrypted-Data-Storage-for-PHP.html">TCrypto: Encrypted data storage for PHP applications</a> (websec.io)</li>
</ul>
<h2>Open Source Projects</h2>
<ul>
<li><a href="https://github.com/timoh6/TCrypto/">TCrypto:</a> TCrypto is a simple and flexible PHP 5.3+ key-value storage library.</li>
<li><a href="https://github.com/timoh6/GenPhrase/">GenPhrase:</a> GenPhrase is a secure passphrase generator (based on passwdqc's pwqgen program) for PHP applications.</li>
</ul>
<h2>Other</h2>
<ul>
<li><a href="http://timoh6.github.io/WebAppSecQuiz/">Web Application Security Quiz</a> Test your knowledge on the common security principles and quirks related to web application development.</li>
<li><a href="http://timoh6.github.io/nhlquiz/">NHL Quiz</a> Test your knowledge on different kinds of amusing and fun NHL facts and records.</li>
</ul>
</div>