diff options
| author | Divy Srivastava <dj.srivastava23@gmail.com> | 2023-04-19 22:27:34 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-19 22:27:34 +0530 |
| commit | 9496dfc68558a0d6e9fa0a3bf1fbde9883a88d07 (patch) | |
| tree | fd37f0f325e288c7cf4a48426481d8553c38f6ef /.github/workflows/ci.generate.ts | |
| parent | 53c9f5918cd07237c20b086945d4604baf1900fb (diff) | |
fix(ext/node): implement asymmetric keygen (#18651)
Towards #18455
This commit implements the keypair generation for asymmetric keys for
the `generateKeyPair` API.
See how key material is managed in this implementation:
https://www.notion.so/denolandinc/node-crypto-design-99fc33f568d24e47a5e4b36002c5325d?pvs=4
Private and public key encoding depend on `KeyObject#export` which is
not implemented. I've also skipped ED448 and X448 since we need a crate
for that in WebCrypto too.
Diffstat (limited to '.github/workflows/ci.generate.ts')
| -rwxr-xr-x | .github/workflows/ci.generate.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts index 5bf55f62b..241b38ef9 100755 --- a/.github/workflows/ci.generate.ts +++ b/.github/workflows/ci.generate.ts @@ -17,7 +17,7 @@ const Runners = (() => { })(); // bump the number at the start when you want to purge the cache const prCacheKeyPrefix = - "19-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ matrix.job }}-"; + "20-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ matrix.job }}-"; const installPkgsCommand = "sudo apt-get install --no-install-recommends debootstrap clang-15 lld-15"; |
