We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I got this Missing elliptic curve point in JWK weird error coming from @spruceid/didkit-wasm-node and @spruceid/didkit-wasm. Here is my code:
Missing elliptic curve point in JWK
@spruceid/didkit-wasm-node
@spruceid/didkit-wasm
const keyType = { kty: 'EC', crv: 'secp256k1', alg: 'ES256K-R', key_ops: ['signTypedData'], }; const stringifyCredential = JSON.stringify(credential); const preparedVC = await DIDKit.prepareIssueCredential( stringifyCredential, JSON.stringify(proofOptions), JSON.stringify(keyType) );
When I am using didkit-wasm-node everything is fine. Is this some bugs or some API has changed?
didkit-wasm-node
The text was updated successfully, but these errors were encountered:
Hi @Harasz, This was inadvertently broken in spruceid/ssi#253. The public key material ("x" and "y" values per RFC 8812) has to be provided now. Opened spruceid/ssi#405 to track this.
Sorry, something went wrong.
Okay, thanks for you answer. Can't wait on fix!
No branches or pull requests
Hi,
I got this
Missing elliptic curve point in JWK
weird error coming from@spruceid/didkit-wasm-node
and@spruceid/didkit-wasm
. Here is my code:When I am using
didkit-wasm-node
everything is fine. Is this some bugs or some API has changed?The text was updated successfully, but these errors were encountered: