Electron and BrainpoolP #226
-
Heyho, thanks for the great package! For a project we need to use BrainpoolP256r1. The problem is, that node >=14.x is supporting those elliptic curves (via crypto openssl module), but electron bundles boringssl instead. BoringSSL will not implement those curves, so we are using elliptic and defining this curve by ourself. So we have our curve (registered via elliptic) and a point on that curve as public key (we get from an api). Do you know if it is somehow possible to extend supported curves and algs or register it with jose? We just do not want to create our own custom implementation of that :(. Thanks for your time and patience. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The library only supports iana registered algorithms and curves registered for use in JOSE. It also only supports native crypto runtimes. |
Beta Was this translation helpful? Give feedback.
The library only supports iana registered algorithms and curves registered for use in JOSE. It also only supports native crypto runtimes.