You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tools like https://mkjwk.org/ generate private keys with just d, e and n values. The dp, dq and qi values can be computed from these. I have a pretty cludgey tool I wrote in Java to compute these in advance, but I'm curious if you can suggest a cleaner method.
The text was updated successfully, but these errors were encountered:
pem-jwk uses asn1.js for big number math, which was reason my tool was in Java — I leveraged some JOSE and big number libraries that I had only a tentative grasp on what they were doing. I will investigate adding a PR.
Tools like https://mkjwk.org/ generate private keys with just
d
,e
andn
values. Thedp
,dq
andqi
values can be computed from these. I have a pretty cludgey tool I wrote in Java to compute these in advance, but I'm curious if you can suggest a cleaner method.The text was updated successfully, but these errors were encountered: