From bbec6d6c2a2ca390dc971a729dccf177fdafb0c3 Mon Sep 17 00:00:00 2001 From: David Humphrey Date: Tue, 3 Jun 2025 11:45:20 -0400 Subject: [PATCH] Fix how sshpk gets imported --- src/ssh-to-age.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ssh-to-age.ts b/src/ssh-to-age.ts index 2cc08b3..1f04295 100644 --- a/src/ssh-to-age.ts +++ b/src/ssh-to-age.ts @@ -1,6 +1,6 @@ import { sha256, sha512 } from "@noble/hashes/sha2"; import { bech32 } from "@scure/base"; -import * as sshpk from "sshpk"; +import sshpk from "sshpk"; import { readFile } from "node:fs/promises"; function clampX25519PrivateKey(key: Uint8Array): void {