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
In the current implementation, only an initial ephemeral private key is used to derive the routing keys of all mix nodes in the route.
To make this consistent with https://github.com/nymtech/sphinx, an initial ephemeral private key must be accumulated for each mix node using a blinding factor. https://github.com/nymtech/sphinx/blob/ca107d94360cdf8bbfbdb12fe5320ed74f80e40c/src/header/keys.rs#L128-L128
At the same time, we must blind the shared key when deriving a shared public key to unwrap a SphinxHeader. https://github.com/nymtech/sphinx/blob/ca107d94360cdf8bbfbdb12fe5320ed74f80e40c/src/header/mod.rs#L236-L236 If not, the first mix node can unwrap all remaining layers using the same shared key.
The text was updated successfully, but these errors were encountered:
youngjoon-lee
No branches or pull requests
In the current implementation, only an initial ephemeral private key is used to derive the routing keys of all mix nodes in the route.
To make this consistent with https://github.com/nymtech/sphinx, an initial ephemeral private key must be accumulated for each mix node using a blinding factor.
https://github.com/nymtech/sphinx/blob/ca107d94360cdf8bbfbdb12fe5320ed74f80e40c/src/header/keys.rs#L128-L128
At the same time, we must blind the shared key when deriving a shared public key to unwrap a SphinxHeader.
https://github.com/nymtech/sphinx/blob/ca107d94360cdf8bbfbdb12fe5320ed74f80e40c/src/header/mod.rs#L236-L236
If not, the first mix node can unwrap all remaining layers using the same shared key.
The text was updated successfully, but these errors were encountered: