JoshKaufman / ursa

URSA - RSA public/private key OpenSSL bindings for Node.js
Other
619 stars 135 forks source link

OpenSSL from NodeJS for Windows #154

Open microshine opened 7 years ago

microshine commented 7 years ago

Now you can use static OpenSSL from NodeJS for Windows

Here is my project based on OpenSLL

JoeyAcc commented 7 years ago

Why is the project nonexistent?

microshine commented 7 years ago

https://github.com/PeculiarVentures/node-webcrypto-ossl/blob/master/binding.gyp

JoeyAcc commented 7 years ago

Thanks for adding the new link. I'm running into a windows OpenSSL issue myself and I was hoping I could use this. Unfortunately that is not the case.

microshine commented 7 years ago

I use OpenSSL from NodeJS and it makes easy to install application from npm. User doesn't need to install/build OpenSSL in this case

Hope it'll be helpful for you

coolaj86 commented 5 years ago

For future people visiting this comment:

Node now has native RSA key generation (as well as signing, encryption, etc) as of v10.12.

I made a featherweight (NO DEPENDENCY, NO COMPILE) vanillajs library to make it a touch easier to utilize that and, more importantly, go between SSH, PEM, and JWK formats (makes for easier WebCrypto compat) without any of the heavy libs.

Check it out if that suits your needs: https://git.coolaj86.com/coolaj86/rasha.js