Elliptic Curve Cryptography With Sjcl In Js And Openssl In Ruby
I am working on a web application which must be able to encrypt data with ECC on the server side and decrypt it in the browser. The only library I have found that is capable of thi
Solution 1:
It looks like you're using ElGamal in your javascript code. I couldn't really find any implementation for ruby, alternatives are using Crypto++ or libgcrypt and writing some glue code.
Ps: instead of that kstr =
line, you can simply write kstr = ar.pack 'N*'
Post a Comment for "Elliptic Curve Cryptography With Sjcl In Js And Openssl In Ruby"