mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
4fa8869f24
This completely rewrites how we handle key material in ext/node. Changes in this PR: - **Signing** - RSA - RSA-PSS 🆕 - DSA 🆕 - EC - ED25519 🆕 - **Verifying** - RSA - RSA-PSS 🆕 - DSA 🆕 - EC 🆕 - ED25519 🆕 - **Private key import** - Passphrase encrypted private keys 🆕 - RSA - PEM - DER (PKCS#1) 🆕 - DER (PKCS#8) 🆕 - RSA-PSS - PEM - DER (PKCS#1) 🆕 - DER (PKCS#8) 🆕 - DSA 🆕 - EC - PEM - DER (SEC1) 🆕 - DER (PKCS#8) 🆕 - X25519 🆕 - ED25519 🆕 - DH - **Public key import** - RSA - PEM - DER (PKCS#1) 🆕 - DER (PKCS#8) 🆕 - RSA-PSS 🆕 - DSA 🆕 - EC 🆕 - X25519 🆕 - ED25519 🆕 - DH 🆕 - **Private key export** - RSA 🆕 - DSA 🆕 - EC 🆕 - X25519 🆕 - ED25519 🆕 - DH 🆕 - **Public key export** - RSA - DSA 🆕 - EC 🆕 - X25519 🆕 - ED25519 🆕 - DH 🆕 - **Key pair generation** - Overhauled, but supported APIs unchanged This PR adds a lot of new individual functionality. But most importantly because of the new key material representation, it is now trivial to add new algorithms (as shown by this PR). Now, when adding a new algorithm, it is also widely supported - for example previously we supported ED25519 key pair generation, but we could not import, export, sign or verify with ED25519. We can now do all of those things.
31 lines
1 KiB
TypeScript
31 lines
1 KiB
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
import crypto, { KeyFormat } from "node:crypto";
|
|
import path from "node:path";
|
|
import { Buffer } from "node:buffer";
|
|
import { assert } from "@std/assert/mod.ts";
|
|
import asymmetric from "./testdata/asymmetric.json" with { type: "json" };
|
|
|
|
Deno.test("crypto.createPrivateKey", async (t) => {
|
|
for (const key of asymmetric) {
|
|
await testCreatePrivateKey(t, key.name, "pem", "pkcs8");
|
|
await testCreatePrivateKey(t, key.name, "der", "pkcs8");
|
|
}
|
|
});
|
|
|
|
function testCreatePrivateKey(
|
|
t: Deno.TestContext,
|
|
name: string,
|
|
format: KeyFormat,
|
|
type: "pkcs8" | "pkcs1" | "sec1",
|
|
) {
|
|
if (name.includes("dh")) return;
|
|
return t.step(`crypto.createPrivateKey ${name} ${format} ${type}`, () => {
|
|
const file = path.join(
|
|
"./tests/unit_node/crypto/testdata/asymmetric",
|
|
`${name}.${type}.${format}`,
|
|
);
|
|
const key = Buffer.from(Deno.readFileSync(file));
|
|
const privateKey = crypto.createPrivateKey({ key, format, type });
|
|
assert(privateKey);
|
|
});
|
|
}
|