Git Product home page Git Product logo

Comments (6)

Jeija avatar Jeija commented on July 17, 2024

I had the same issue.
Setting the correct padding type for decryption fixed it for me:
Use ursa.RSA_PKCS1_PADDING with key.decrypt(buf, bufEncoding, outEncoding, padding)

msg = key.decrypt(msg, 'base64', 'utf8');

becomes

msg = key.decrypt(msg, 'base64', 'utf8', ursa.RSA_PKCS1_PADDING);

from jsencrypt.

latrell avatar latrell commented on July 17, 2024

I have also experienced similar problems, the library can not support RSA_OAEP_PADDING it?

from jsencrypt.

kaushik-evani avatar kaushik-evani commented on July 17, 2024

I had the same problem. My client was an android app. I was encrypting in android and decrypting it in node using ursa. i tried ursa.RSA_PKCS1_PADDING and ursa.RSA_PKCS1_OAEP_PADDING. I tried changing the padding type in android as well which did not work. As it turned out, android was not using any padding and by default ursa was checking for padding. After going through the ursa library, I found that you can even use ursa.RSA_NO_PADDING which did the trick. Dunno if this is still useful to you. But this thread is what led me to my solution. So thanks a lot!

from jsencrypt.

sfsw avatar sfsw commented on July 17, 2024

no need to use ursa module anymore, just node crypto module!

from jsencrypt.

pb-cheung avatar pb-cheung commented on July 17, 2024

I had the same problem. How to set the padding type?

from jsencrypt.

gurumelo avatar gurumelo commented on July 17, 2024

https://www.npmjs.com/package/jsdecrypt

from jsencrypt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.