Skip to content

Commit a75b123

Browse files
author
Andreas Fuchs
committed
Initial Jekyl content version
1 parent 5111bd7 commit a75b123

7 files changed

+118
-1
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
_site
2+
.sass-cache
3+
.jekyll-metadata

404.html

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
layout: default
3+
---
4+
5+
<style type="text/css" media="screen">
6+
.container {
7+
margin: 10px auto;
8+
max-width: 600px;
9+
text-align: center;
10+
}
11+
h1 {
12+
margin: 30px 0;
13+
font-size: 4em;
14+
line-height: 1;
15+
letter-spacing: -1px;
16+
}
17+
</style>
18+
19+
<div class="container">
20+
<h1>404</h1>
21+
22+
<p><strong>Page not found :(</strong></p>
23+
<p>The requested page could not be found.</p>
24+
</div>

_config.yml

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Welcome to Jekyll!
2+
#
3+
# This config file is meant for settings that affect your whole blog, values
4+
# which you are expected to set up once and rarely edit after that. If you find
5+
# yourself editing this file very often, consider using Jekyll's data files
6+
# feature for the data you need to update frequently.
7+
#
8+
# For technical reasons, this file is *NOT* reloaded automatically when you use
9+
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
10+
11+
# Site settings
12+
# These are used to personalize your new site. If you look in the HTML files,
13+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
14+
# You can create any custom variable you would like, and they will be accessible
15+
# in the templates via {{ site.myvariable }}.
16+
title: tpm2-software community
17+
email: https://lists.01.org/mailman/listinfo/tpm2
18+
description: >- # this means to ignore newlines until "baseurl:"
19+
The community around the TPM Software Stack 2.0 and its tpm2-tss open source
20+
implementation and all the tools and software that build upon it.
21+
#baseurl: "" # the subpath of your site, e.g. /blog
22+
#url: "" # the base hostname & protocol for your site, e.g. http://example.com
23+
#twitter_username: jekyllrb
24+
github_username: tpm2-software
25+
26+
# Build settings
27+
markdown: kramdown
28+
theme: minima
29+
plugins:
30+
- jekyll-sitemap
31+
# - jekyll-feed
32+
33+
# Exclude from processing.
34+
# The following items will not be processed, by default. Create a custom list
35+
# to override the default setting.
36+
# exclude:
37+
# - Gemfile
38+
# - Gemfile.lock
39+
# - node_modules
40+
# - vendor/bundle/
41+
# - vendor/cache/
42+
# - vendor/gems/
43+
# - vendor/ruby/

index.html

-1
This file was deleted.

index.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
# Feel free to add content and custom Front Matter to this file.
3+
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
4+
5+
layout: page
6+
---
7+
8+
Welcome to the tpm2-software community page.
9+
10+
This page is currently in development.
11+
12+
At some point, it shall host tutorials, documentation and general links to
13+
interesting facts and features regarding the use of TPM 2.0.

software.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
layout: page
3+
title: Software
4+
permalink: /software/
5+
---
6+
7+
# Software with TPM 2.0 support
8+
- [TPM2-Tools](https://github.com/tpm2-software/tpm2-tools)
9+
- [PKCS11](https://github.com/tpm2-software/tpm2-pkcs11)
10+
- [OpenSSL](https://github.com/tpm2-software/tpm2-tss-engine)
11+
- [OpenConnect](http://git.infradead.org/users/dwmw2/openconnect.git/blob/tpm2:/gnutls_tpm2_esys.c)
12+
- [cryptsetup/LUKS](https://gitlab.com/cryptsetup/cryptsetup/merge_requests/51)
13+
- [StrongSwan](https://wiki.strongswan.org/projects/strongswan/wiki/TPMPlugin)
14+
- [Clevis](https://github.com/latchset/clevis Howto: https://blog.dowhile0.org/2017/10/18/automatic-luks-volumes-unlocking-using-a-tpm2-chip/)
15+
- [TPM2-TOTP](https://github.com/tpm2-software/tpm2-totp)
16+
17+
# Projects requiring TPM 2.0 support
18+
- OpenVPN
19+
- WireGuard
20+
- Tinc
21+
- NetworkManager/wpa_supplicant 802.1X
22+
- gnome-keyring
23+
- KDE wallet
24+
- GNU-TLS
25+
- WebCrypto (Firefox, WebKit, Chromium)
26+
- OpenSSH HostKey ((non-)PKCS11), ClientKey ((non-)PKCS11)
27+
- Wireshark TPM Cmd/Rsp/Buffer with TCTI-PCAP module or /dev/tpmrm0 sniffing (partial, TPM-Headers only yet)
28+

tutorials.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: page
3+
title: Tutorials
4+
permalink: /tutorials/
5+
---
6+
7+
This shall contain a list of tutorials.

0 commit comments

Comments
 (0)