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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
|
---
import {
createVerificationSummary,
logLevel,
type Summary,
VerificationResult,
} from "@lib/pgp/summary";
import type { Verification } from "@lib/pgp/verify";
import { Level } from "@utils/index";
import type { NonEmptyArray } from "@utils/iterator";
interface Props extends Verification {}
let [errors, keys] = await createVerificationSummary(Astro.props);
const failed = errors.filter((summary) => "reason" in summary);
if (failed.length > 0) {
errors = failed as NonEmptyArray<Summary>;
}
let worst;
for (const summary of errors) {
if (worst === undefined) {
worst = summary;
}
const { result } = summary;
const a = logLevel(worst.result);
const b = logLevel(result);
if (a[0] === b[0] && !a[1] && b[1]) {
worst = summary;
} else if (b[0] === Level.ERROR) {
worst = summary;
} else if (a[0] === Level.OK && b[0] === Level.WARN) {
worst = summary;
}
}
let lvl: [Level, boolean] | undefined = undefined;
let label;
let title = "";
let content;
const error = worst && "reason" in worst ? worst.reason : undefined;
if (worst) {
lvl = logLevel(worst.result);
switch (lvl[0]) {
case Level.OK: {
label = "OK";
break;
}
case Level.WARN: {
label = "Aviso";
break;
}
case Level.ERROR: {
label = "Erro";
break;
}
default: {
throw new Error("Unreachable");
}
}
switch (worst.result) {
case VerificationResult.NO_SIGNATURE: {
title = "Assinatura não encontrada";
content = `<p>
Este blog post não foi assinado.
</p>
<p>
<strong>Não existe forma de verificar a autentacidade do autor ou a integridade do texto escrito</strong>.
</p>
`;
break;
}
case VerificationResult.MISSING_KEY: {
title = "Chave não encontrada";
content = `<p>
Este blog post está assinado digitalmente, porém a chave pública com <code>KeyID</code> <samp>0x${worst.keyID}</samp> com que foi assinado não foi encontrada no chaveiro sendo <strong>impossível verificar a assinatura, quer dizer, não existe forma de verificar a autentacidade do autor ou a integridade do texto escrito</strong>.
</p>
<p>
Procure a chave noutro sítio da internet para conseguir fazer a verificação manualmente.
</p>
`;
break;
}
case VerificationResult.SIGNATURE_CORRUPTED: {
title = "Assinatura corrumpida";
content = `<p>
Exite um ficheiro que supostamente é a assinatura, mas ele está corrompido ou com um formato inválido.
</p>
<p>
<strong>Não existe forma de verificar a autentacidade do autor ou a integridade do texto escrito</strong>.
</p>
`;
break;
}
case VerificationResult.SIGNATURE_COULD_NOT_BE_CHECKED: {
title = "Erro desconhecido";
content = `<p>
A assinatura foi encontrada mas ocorreu um erro inesperado durante a verificação.
</p>
<p>
<strong>Não existe forma de verificar a autentacidade do autor ou a integridade do texto escrito</strong>.
</p>
`;
break;
}
case VerificationResult.BAD_SIGNATURE: {
title = "Assinatura inválida";
content = `<p>
Existe uma assinatura digital porém o conteúdo da blog post não corresponde à assinatura. Talvez o texto tenha sido alterado sem ter sido criada uma nova assinatura.
</p>
<p>
Pode tentar verificar a assinatura com versões antigas do blog post, mas esta versão <strong> não pode ser verificada quanto à autentacidade do autor ou à integridade do texto escrito</strong>.
</p>
`;
break;
}
case VerificationResult.UNTRUSTED_KEY: {
title = "Assinatura válida (chave não confiada)";
content = `<p>
A assinatura digital é criptograficamente válida, porém a chave utilizada não é suficientemente confiada pelo servidor. Mas podes ter a certeza que <strong>o dono da chave pública é a mesma pessoa que assinou este blog post</strong>.
</p>
`;
break;
}
case VerificationResult.TRUSTED_KEY: {
title = "Assinatura válida";
content = `<p>
A assinatura digital é criptograficamente válida. <strong>O dono da chave pública é a mesma pessoa que assinou este blog post exatamente como ele está, sem alterações</strong>.
</p>
`;
break;
}
case VerificationResult.EXPIRATION_AFTER_SIGNATURE: {
break;
}
case VerificationResult.EXPIRATION_BEFORE_SIGNATURE: {
break;
}
case VerificationResult.REVOCATION_AFTER_SIGNATURE: {
break;
}
case VerificationResult.REVOCATION_BEFORE_SIGNATURE: {
break;
}
case VerificationResult.KEY_DOES_NOT_SIGN: {
break;
}
default: {
throw new Error("Unreachable");
}
}
}
---
{
lvl &&
(
<details
class:list={{
ok: lvl[0] === Level.OK,
warn: lvl[0] === Level.WARN,
error: lvl[0] === Level.ERROR,
super: lvl[1],
}}
>
<summary>{label?.toUpperCase()}: {title.toUpperCase()}</summary>
<Fragment set:html={content} />
{error && <pre><samp>{error}</samp></pre>}
</details>
)
}
<style>
pre {
overflow-x: auto;
}
details {
&.error {
--bg: #fff;
--fg: var(--color-active);
&.super {
--bg: var(--color-active);
--fg: #fff;
}
}
&.warn {
--bg: #fff;
--fg: #f46d43;
&.super {
--bg: #f46d43;
--fg: #fff;
}
}
&.ok {
--bg: #fff;
--fg: var(--color-visited);
&.super {
--bg: var(--color-visited);
--fg: #fff;
}
}
padding-inline: 0.5em;
padding-block: 0.5em;
& > summary {
background-color: var(--bg);
padding-inline: 0.5em;
padding-block: calc(1em / 3);
color: var(--fg);
border-color: var(--fg);
border-width: 1px;
border-style: solid;
border-radius: calc(1em / 3);
font-weight: bolder;
&:focus {
outline-color: var(--fg);
}
&::marker {
color: var(--fg);
}
}
& > :not(summary) {
padding-inline: 1em;
/* font-size: smaller; */
}
& > summary + * {
margin-block: 0.5em;
padding-block-start: 1em;
border-block-start: 1px solid var(--fg);
}
}
@media (prefers-color-scheme: dark) {
details {
&.error {
--bg: #000;
&.super {
--fg: #000;
}
}
&.warn {
--bg: #000;
--fg: #f46d43;
&.super {
--bg: #f46d43;
--fg: #000;
}
}
&.ok {
--bg: #000;
&.super {
--fg: #000;
}
}
}
}
</style>
|