有什么方法可以使用 crypto-js 库支持 RSA 吗?
Is there any way to support RSA using the crypto-js library?
我目前正在使用 crypto-js
中的 AES-GCM
。目的是针对非对称加密更改为 RSA
。以下说法正确吗https://community.postman.com/t/http-message-signing-using-rsa-sha256/1791
?
However, CryptoJS doesn’t support RSA, and it’s the only crypto
library available in the Postman Sandbox. So I’m sort of stuck, unless
I implement a RSA-SHA256 signing algorithm myself.
Now, I’ve noticed that crypto-js hasn’t had a single commit for a year
on GitHub,
我真的更愿意坚持使用 crypto-js
库,因为很难使用内置的 SubtleCrypto
,现在我们有一个围绕 crypto-js
库构建的框架。基本上必须取消才能进入 SubtleCrypto
。感谢指点。
正如@Topaco 提到的那样,crypto-js
只是一个对称 加密库。我确实转向了 tweet-nacl
,它运作良好。
我目前正在使用 crypto-js
中的 AES-GCM
。目的是针对非对称加密更改为 RSA
。以下说法正确吗https://community.postman.com/t/http-message-signing-using-rsa-sha256/1791
?
However, CryptoJS doesn’t support RSA, and it’s the only crypto library available in the Postman Sandbox. So I’m sort of stuck, unless I implement a RSA-SHA256 signing algorithm myself.
Now, I’ve noticed that crypto-js hasn’t had a single commit for a year on GitHub,
我真的更愿意坚持使用 crypto-js
库,因为很难使用内置的 SubtleCrypto
,现在我们有一个围绕 crypto-js
库构建的框架。基本上必须取消才能进入 SubtleCrypto
。感谢指点。
正如@Topaco 提到的那样,crypto-js
只是一个对称 加密库。我确实转向了 tweet-nacl
,它运作良好。