comparison ascii-presentation.txt @ 1:039442a8068d

added some kind of stripped down ascii presentation
author meillo@marmaro.de
date Wed, 18 Feb 2009 16:58:42 +0100
parents
children
comparison
equal deleted inserted replaced
0:8d616aba351e 1:039442a8068d
1
2
3
4
5
6
7
8 Supplemental Keysigning Help
9 ============================
10
11
12
13
14
15
16
17
18
19
20
21 Keysigning method
22 -----------------
23
24 Zimmermann and Sassman's method
25
26
27
28
29
30
31
32
33
34
35
36 Key management
37 --------------
38
39 $ gpg --no-default-keyring \
40 --keyring /path/to/keyring.gpg \
41 --import some-public-key.asc
42
43
44
45
46
47
48
49
50
51
52 $ gpg --no-default-keyring \
53 --keyring /path/to/keyring.gpg \
54 --keyserver subkeys.pgp.net \
55 --recv-key 0xDEADBEEF
56
57
58
59
60
61
62
63
64
65 Participant list
66 ----------------
67
68 $ keylist.sh /path/to/keyring.gpg \
69 header.txt \
70 howto.txt \
71 checksums.txt
72
73
74
75
76
77
78
79
80
81 WOT graphs
82 ----------
83
84 required:
85 - sig2dot
86 - neato (graphviz)
87
88
89
90
91
92
93
94
95
96 $ gpg --no-default-keyring \
97 --keyring /path/to/keyring.gpg \
98 --list-sigs \
99 | sig2dot -d YYYY-MM-DD \
100 | neato -Tpng > wot.png
101
102 (adjust the date YYYY-MM-DD)
103
104
105
106
107
108
109
110
111
112 $ gpg --no-default-keyring \
113 --keyring /path/to/keyring.gpg \
114 --keyserver subkeys.pgp.net \
115 --refresh-keys
116
117
118
119
120
121
122
123
124
125
126 Acknowledgments
127 ---------------
128
129 Fabian Fingerle
130
131
132
133
134
135
136
137