我们可以使用给定的字符串模式创建 XRP 帐户地址并使用校验和完成其余部分吗?

发布于 2025-01-09 07:51:28 字数 149 浏览 0 评论 0原文

我们可以使用给定的字符串模式创建 XRP 帐户地址并使用校验和完成其余部分吗?

例如:如果我们想创建一个包含特定字符串模式(如“xxtomxxjerry”)的 XRP 帐户地址。我们能否找到一种方法在任何 XRPL 相关的 javascript 库中创建这样的帐户地址?

Can we create XRP account address with a given string pattern and complete the rest with the checksum?

For example: If we want to create an XRP account address that includes a particular string pattern like "xxtomxxjerry". Can we find an approach to creating such an account address in any XRPL related javascript library?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风苍溪 2025-01-16 07:51:28

XRP 账本中的账户地址是 base58 编码的公钥表示。

公钥是曲线上的有效点,有时位于曲线的特定子组内(当曲线不是素数阶时)。

XRP 支持 edwards25519 和 secp256k1 曲线。

通过曲线生成器(或子组生成器)与加密安全随机数(大约为 2^256)的标量相乘,您可以到达公共点(这是确定性的,但不可预测)。

因此,要回答您的问题......在一个紧密的循环中,您需要:

  1. 生成 02^256 之间的加密安全随机数。
  2. 通过适当的组生成器执行该随机数的标量乘法。
  3. 获取所得的原始曲线点并遵循XRP规范(包括base58编码),以达到地址值。
  4. 检查生成的地址是否有所需的虚荣属性。
  5. 如果达到目标,则中断并安全存储标量。

最终您会找到符合您要求的具体地址。超过几个字符将需要很长时间,当然这取决于您的硬件。

Account addresses in the XRP Ledger are base58 encoded public-key representations.

The public-key is a valid point on the curve, sometimes inside a specific subgroup of the curve (when the curve isn't prime order).

XRP supports both edwards25519 and secp256k1 curves.

You reach the public point (which is deterministic but not predictable), by scalar multiplication of the curves generator (or subgroups generator) with a cryptographically secure random number which is approximately of the order 2^256.

So to answer your question... in a tight loop you need to:

  1. Generate a cryptographically secure random number between 0 and 2^256.
  2. Execute scalar multiplication of this random number by the appropriate group generator.
  3. Take the resultant raw curve point and follow the XRP spec (including base58 encoding), to reach the address value.
  4. Inspect the generated address for desired vanity properties.
  5. If target is reached, break and securely store the scalar.

Eventually you will find a specific address which matches your requirement. More than a few characters will take a long time, predicated of course on your hardware.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文