如何使用javascript在椭圆曲线上放置一个点

问题描述 投票:0回答:1

所以我试图从服务器向客户端发送一条消息,我试图将该消息作为一个点放在椭圆曲线上,然后将该点与其自身相加 K 次!我在 javascript 中找不到一个可以为自身添加一个点的库!所以我想在 javascript 中找到一些解决方案!

i need library in javascript thats can :

-put a "message" on the elliptic curve as a point
-make the addition of two points(or the addition of the same point to itself) on the elliptic curve to get another Point P+P=Q
javascript encryption point private-key elliptic-curve
1个回答
0
投票

我昨天发现的东西: https://paulmillr.com/posts/noble-secp256k1-fast-ecc/

高贵的 JavaScript 库似乎是一个标准。它还旨在通过让您看到所使用的数学来减少神秘性(双关语)。

© www.soinside.com 2019 - 2024. All rights reserved.