Skip to content

Commit 91f39b0

Browse files
authored
Merge pull request #30 from helio-frota/deps
fix: sec issues and dep updates adjustments
2 parents 6bf4b4d + 815cd1e commit 91f39b0

File tree

4 files changed

+6187
-4050
lines changed

4 files changed

+6187
-4050
lines changed

blog/2023-02-13-elfsign.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ bit of care, handling a private key properly.
9292

9393
Luckily, we now have [sigstore](https://www.sigstore.dev/). Sigstore can help us with two things, creating
9494
short-lived private keys (Fulcio), and a tamper-resistant log (Rekor). We already talked a bit about both in
95-
the context of [gitsign]({% post_url 2022-12-02-sign-commits-with-sigstore %}).
95+
the context of [gitsign](\{% post_url 2022-12-02-sign-commits-with-sigstore %\}).
9696

9797
Adding Fulcio and Rekor to `elfsign`, we gain a bunch of cool things:
9898

@@ -105,7 +105,7 @@ could also create something like `elfsign execute` to verify and execute, but th
105105

106106
As we can prove, using Rekor, that we did own the private key during the time the certificate was valid, and we
107107
provided the signature/digest at the same time, we now only need to decide if we want to trust the issuer and the
108-
subject the certificate was issued for. And by storing [the Rekor bundle]({% post_url 2023-01-13-sigstore-bundle-format %}), we can do this offline too.
108+
subject the certificate was issued for. And by storing [the Rekor bundle](\{% post_url 2023-01-13-sigstore-bundle-format %\}), we can do this offline too.
109109

110110
## Too good to be true?
111111

docusaurus.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// @ts-check
22
// Note: type annotations allow type checking and IDEs autocompletion
33

4-
const lightCodeTheme = require("prism-react-renderer/themes/github");
5-
const darkCodeTheme = require("prism-react-renderer/themes/dracula");
4+
const lightCodeTheme = require("prism-react-renderer").themes.github;
5+
const darkCodeTheme = require("prism-react-renderer").themes.dracula;
66

77
/** @type {import('@docusaurus/types').Config} */
88
const config = {

0 commit comments

Comments
 (0)