summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorjoe <joe@jerkface.net>2013-12-06 01:44:45 -0500
committerjoe <joe@jerkface.net>2013-12-06 01:44:45 -0500
commitc744cc07b43660d39c2c43d7fc9ebaa82ef27544 (patch)
tree64db89cd65f686862fb0750218e4426d636ecc37 /examples
parent63c21bcd174dcd12110b57b8556fd51b4555d1dd (diff)
Example kiki script samizdat-init-key.sh
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/samizdat-init-key.sh50
1 files changed, 50 insertions, 0 deletions
diff --git a/examples/samizdat-init-key.sh b/examples/samizdat-init-key.sh
new file mode 100755
index 0000000..0bd7a32
--- /dev/null
+++ b/examples/samizdat-init-key.sh
@@ -0,0 +1,50 @@
1#!/bin/sh
2
3pem_to_onion_url()
4{
5 perl -MMIME::Base64 -MDigest::SHA=sha1 -MMIME::Base32=RFC -e '
6 $key=decode_base64(join "", grep {!/[-:]/} qx(ssh-keygen -m PEM -e -f $ARGV[0]));
7 printf "%s.onion\n", lc MIME::Base32::encode(substr(sha1($key), 0, 10))' "$1"
8}
9
10makepub () {
11 tag="$1"
12 path="$2"
13 [ -f $path ] || {
14 mkdir -p "$(dirname $path)"
15 kiki --show-pem "$tag" | ssh-keygen -f /dev/stdin -i -m PKCS8 > "$path"
16 echo "$path": exported >&2
17 }
18}
19
20# External commands invoked by kiki in order to generate keys.
21# Notice that $file will not be interpolated until kiki runs the command.
22ssh='mkdir -p "$(dirname $file)" && ssh-keygen -P "" -q -f $file -b 2048'
23ssl='mkdir -p "$(dirname $file)" && openssl genrsa -out $file 1024'
24
25tty -s && echo -n 'Passphrase: '
26read passphrase
27
28# First, we ensure that the tor key exists and is imported
29# so that we know where to put the strongswan key.
30torkey="$ROOT"/var/lib/tor/samizdat/private_key
31echo "$passphrase" | \
32 kiki --keypairs tor="$torkey{$ssl}" \
33 --passphrase-fd 0 || exit
34onion_url=$(pem_to_onion_url "$torkey") || exit
35
36# Now import, export, or generate the remaining secret keys.
37echo "$passphrase" | \
38 kiki --keypairs \
39 strongswan="$ROOT"/etc/ipsec.d/private/"$onion_url".pem{"$ssl"} \
40 ssh-client="$ROOT$HOME"/.ssh/id_rsa{"$ssh"} \
41 ssh-host="$ROOT"/etc/ssh/ssh_host_rsa_key{"$ssh"} \
42 --passphrase-fd 0 || exit
43
44# Finally, export public keys if they do not exist.
45makepub ssh-client "$ROOT$HOME/.ssh/id_rsa.pub"
46makepub ssh-host "$ROOT/etc/ssh/ssh_host_rsa_key.pub"
47
48# TODO: makepub can be made obsolete by implementing something like this:
49# kiki --public ssh-client=$ROOT$HOME/.ssh/id_rsa.pub \
50# ssh-host="$ROOT"/etc/ssh/ssh_host_rsa_key.pub