Skip to content

Commit 8dca2f3

Browse files
committed
daily
1 parent 6e32eff commit 8dca2f3

File tree

4 files changed

+2544
-3177
lines changed

4 files changed

+2544
-3177
lines changed

.typos.toml

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ extend-ignore-re = [
2727
";ba'",
2828
"/bin/\\(ba\\)\\?sh",
2929
"-MISSy",
30+
"-passin ",
3031
"Full HD",
3132
"for VDISK in hd sd",
3233
"\\^fpr:::::::::",

mail/S-MIME-certificate.md

+16
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,19 @@ Installing an S/MIME Personal Certificate for signing emails.
1717
- Delete certificate from Windows
1818

1919
Displaying certificate: `openssl pkcs12 -in certificate.pfx`
20+
21+
## Add intermediate certificate to PKCS #12
22+
23+
```bash
24+
openssl pkcs12 -in pkcs12-from-Sectigo.p12 -out temp.p12 -nodes \
25+
-passin pass:${PASSWORD} -passout pass:${PASSWORD}
26+
openssl pkcs12 -export -in temp.p12 -out viktor-szepe-net.pfx -certfile Sectigo-intermediate.pem \
27+
-passin pass:${PASSWORD} -passout pass:${PASSWORD}
28+
rm temp.p12
29+
```
30+
31+
## View PKCS #7 signature
32+
33+
- Copy BASE64 encoded signature from email to smime.p7s.b64
34+
- Decode signature: `base64 -d <smime.p7s.b64 >smime.p7s`
35+
- `openssl pkcs7 -inform DER -in smime.p7s -print_certs -text`

package/apt-sources/nodejs.list

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Node.js from NodeSource
22
# https://nodejs.org/en/about/releases/
3-
deb https://deb.nodesource.com/node_18.x buster main
4-
#K: wget -qO- https://deb.nodesource.com/gpgkey/nodesource.gpg.key | gpg --yes --dearmor --output /etc/apt/trusted.gpg.d/nodesource.gpg
3+
deb https://deb.nodesource.com/node_22.x nodistro main
4+
#K: wget -qO- https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --yes --dearmor --output /etc/apt/trusted.gpg.d/nodesource.gpg
55
#M: https://github.com/nodesource/distributions/blob/master/README.md#debmanual

0 commit comments

Comments
 (0)