We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Pedersen Commitment 是基于离散对数难题实现的
其构造过程分为三段:
如果 comm1, comm2 分别是使用盲因子 r1, r2 对 v1, v2 的承诺,则 comm1 + comm2 就是使用盲因子 r1 + r2 对 v1 + v2 的承诺,即
参考:https://github.com/threehook/go-pedersen-commitment
在交易过程中,在隐藏交易的数值的基础上,确认交易的正确性(如门罗币)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Pedersen Commitment
Pedersen Commitment 是基于离散对数难题实现的
其构造过程分为三段:
基于 Pedersen Commitment 的加法同态
如果 comm1, comm2 分别是使用盲因子 r1, r2 对 v1, v2 的承诺,则 comm1 + comm2 就是使用盲因子 r1 + r2 对 v1 + v2 的承诺,即
Pedersen Commitment 的算法实现
参考:https://github.com/threehook/go-pedersen-commitment
Pedersen Commitment 的应用
在交易过程中,在隐藏交易的数值的基础上,确认交易的正确性(如门罗币)
The text was updated successfully, but these errors were encountered: