Open jlucaso1 opened 2 months ago
1.1.27+267afa293
Linux 6.8.0-40-generic x86_64 x86_64
import {generateKeyPairSync} from "crypto" generateKeyPairSync( 'x25519', { publicKeyEncoding: { format: 'der', type: 'spki' }, privateKeyEncoding: { format: 'der', type: 'pkcs8' } } );
Don't throw error
NotSupportedError: The operation is not supported. at node:crypto:66
at https://bun.sh/docs/runtime/nodejs-apis#node-crypto shows that generateKeyPairSync is implemented, but is it only partial?
generateKeyPairSync
any update?
I'm trying to implement, but with no success https://github.com/oven-sh/bun/pull/13798
What version of Bun is running?
1.1.27+267afa293
What platform is your computer?
Linux 6.8.0-40-generic x86_64 x86_64
What steps can reproduce the bug?
What is the expected behavior?
Don't throw error
What do you see instead?
Additional information
at https://bun.sh/docs/runtime/nodejs-apis#node-crypto shows that
generateKeyPairSync
is implemented, but is it only partial?