Skip to content

fix(zh/cryptography): update broken Move reference link to correct page #993

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/nextra/pages/zh/build/smart-contracts/cryptography.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ RIPEMD160 由于其 80 位的安全级别,应避免作为抗碰撞函数使用
## 椭圆曲线算术

虽然 [哈希函数](#cryptographic-hash-functions) 和 [数字签名](#digital-signature-verification) 模块应为大多数应用提供足够的功能,但某些应用将需要更强大的密码学。
通常,此类应用的开发者需要等待其所需的密码学功能在 [Aptos Move 框架](../../network/blockchain/move.mdx) 中作为 [Move 原生函数](book/functions.mdx#native-functions) 高效实现。
通常,此类应用的开发者需要等待其所需的密码学功能在 [Aptos Move 框架](../why-move.mdx) 中作为 [Move 原生函数](book/functions.mdx#native-functions) 高效实现。
相反,我们公开了基本的构建块,开发者可以使用这些构建块直接在 Move 语言中实现自己的密码学原语,并且做到 **高效**。

具体来说,我们目前公开了两个流行的椭圆曲线群及其相关有限域的低级算术操作:
Expand Down Expand Up @@ -244,4 +244,4 @@ assert(
[^ed25519]: _ed25519:_ **Ed25519: high-speed high-security signatures**, by Daniel J. Bernstein, Niels Duif, Tanja Lange, Peter Schwabe, Bo-Yin Yang, [https://ed25519.cr.yp.to/](https://ed25519.cr.yp.to/)
[^eddsa]: _eddsa:_ **Taming the Many EdDSAs**, by Konstantinos Chalkias, François Garillot, Valeria Nikolaenko, in SSR 2020, [https://dl.acm.org/doi/abs/10.1007/978-3-030-64357-7_4](https://dl.acm.org/doi/abs/10.1007/978-3-030-64357-7_4)
[^groth16]: _groth16:_ **On the Size of Pairing-Based Non-interactive Arguments**; by Groth, Jens; in EUROCRYPT 2016
[^tlock]: _tlock:_ **tlock: Practical Timelock Encryption from Threshold BLS**; by Nicolas Gailly and Kelsey Melissaris and Yolan Romailler; [https://eprint.iacr.org/2023/189](https://eprint.iacr.org/2023/189)
[^tlock]: _tlock:_ **tlock: Practical Timelock Encryption from Threshold BLS**; by Nicolas Gailly and Kelsey Melissaris and Yolan Romailler; [https://eprint.iacr.org/2023/189](https://eprint.iacr.org/2023/189)
Loading