Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NodeJS - Giải mã hash thất bại #19

Open
Ebiz-github opened this issue Jul 29, 2021 · 3 comments
Open

NodeJS - Giải mã hash thất bại #19

Ebiz-github opened this issue Jul 29, 2021 · 3 comments

Comments

@Ebiz-github
Copy link

Mình đang tích hợp App in App momo cho dự án thì gặp vấn đề "Giải mã hash thất bại". Mình đã sử dụng code mẫu của momo trên github nhưng vẫn bị lỗi này. Mình không viết mình có sai chỗ nào không, mong mọi người giải đáp giúp với a. Cảm ơn mọi người đã quan tâm đến vấn đề này.

[
image
image
image

](url)

@tamnk74
Copy link

tamnk74 commented Aug 25, 2021

try this one:

static async ecryptRSA(data) {
    const publicKey = await readFile(momoConfig.publicKeyFile);
    const key = new NodeRSA(publicKey, { encryptionScheme: 'pkcs1' });
    const encryptData = key.encrypt(fastJson(data), 'base64');

    return encryptData.toString('base64');
  }

@Ebiz-github
Copy link
Author

Can you tell me what is the fastJson(data) function?

@tomnk
Copy link

tomnk commented Sep 26, 2021

@Ebiz-github You can use JSON.stringify(data) instead. or use this lib https://www.npmjs.com/package/fast-json-stringify

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants