bip32-ed25519アドレスをサポートするキルン
1 回答
- 投票
-
- 2019-09-19
すばらしい質問です.これを次のリリースに含めることを望んでいます.
Tezosは、セキュリティを向上させるため、この新しい派生スキームを採用しています.経歴:このアップデートにはBIP32(Bitcoin Improvement Proposal 32)が含まれているため、ビットコインとテゾスでのアドレスの使用方法を対比することが重要です:
- ビットコイン:ユーザーにはルートアドレスがあり、トランザクションごとに一意のアドレスを取得できるため、2人が同じ宛先アドレスを使用してBTCを送信することはありません.これらは使い捨ての領収書アドレスと呼ばれることもあります.
- Tezos :ユーザーは通常、すべての操作に同じ正確なアドレスを使用します.ルートアドレスの場合もありますが、ほとんどの場合、
/0h/0h
の派生パスです.これらは、使用する一意に派生したBTCアドレスと同じであり、ビットコインの代わりにテゾスのパスを使用するだけです.
この派生スキームへの変更は、ビットコインユーザーのコンテキストではTezosよりも重要です.問題は、BIP32が使用する数学にあります.実際には半分だけが有効なECDSAキーである場合、署名(楕円)曲線上のすべてのポイントが有効であると想定しています.これらの無効なキーはルートキーの一部に依存し、通常、非常に大きな数または非常に深い派生を持つ派生パスを使用してのみ検出されます-例:
/0h/0hではなく
.派生スキームがすでに使用されるまで、この問題が検出されなかったのもそのためです./7293843h/9372365h
曲線の無効な部分でアドレスを使用しようとしたときに、攻撃者がそれらのアドレスのどれが機能しないかを判断した場合、攻撃者はこの情報を使用して秘密鍵を判断する可能性があります.この攻撃ベクトルでは、ルートキーから多くの派生アドレスを共有している必要があることに注意してください.これにより、ビットコインよりもTezosでこの攻撃が発生する可能性が低くなります.
Great question - it will! We hope to include this in our next release.
Tezos has adopted this new derivation scheme because it improves security. Backstory: because this update involves BIP32 (Bitcoin Improvement Proposal 32), it is important to contrast how addresses are used in Bitcoin and Tezos:
- Bitcoin: Users have a root address, from which you can derive a unique address from for each transaction so no two people are sending BTC to you using the same destination address. These are sometime called throwaway receipt addresses.
- Tezos: Users typically use the same exact address for all operations. Sometimes its the root address, most often it is the
/0h/0h
derivation path. These is the same as any of the uniquely derived BTC addresses you would use, it just uses Tezos’ path instead of Bitcoin’s.
The changes to this derivation scheme are more important in the context of Bitcoin users than they are Tezos. The issue lies the math that BIP32 uses. It assumes that all points on a signing (elliptic) curve are valid, when really only half are valid ECDSA keys. These invalid keys depend on parts of your root key and typically only found using a derivation path with very large numbers or really deep derivations - for example:
/7293843h/9372365h
instead of/0h/0h
. That’s also why this issue wasn’t caught until the derivation scheme was already in use.If you attempt to use addresses on the invalid part of the curve and an attacker determines which of those addresses do not work, they could use this information to determine your private key. Note that this attack vector requires that you have shared many derived addresses from your root key, which is what makes this attack less likely on Tezos than on Bitcoin.
-
こんにちはマイク!機会のために、あなたの答えを編集して、bip32-ed25519についての詳細を提供していただけませんか?ありがとうHi Mike! For the sake of the opportunity could you please edit your answer and offer more details about bip32-ed25519 ? thanks
- 0
- 2019-09-22
- Ezy
-
@Ezy確かに、変更の背景をもう少し含めました@Ezy Sure, I've included some more background on the change
- 0
- 2019-10-13
- mikereinhart
Killn は、新しい更新で元帳bip32-ed25519アドレスをサポートしますか?ありがとう!