以太坊签名中的遗留恢复(V)值

问题描述 投票:0回答:2

以太坊签名必须符合secp256k1曲线R、S和V值,要求V值必须为27或28。

我想知道两个有效 V 值的遗留原因是什么?

这是由以太坊经典硬分叉引起的吗?当前的钱包实现是否仅使用其中之一,而另一个是遗留下来的价值?

参见:https://github.com/ethereum/go-ethereum/blob/55599ee95d4151a2502465e0afc7c47bd1acba77/internal/ethapi/api.go#L452-L459

// EcRecover returns the address for the account that was used to create the signature.
// Note, this function is compatible with eth_sign and personal_sign. As such it recovers
// the address of:
// hash = keccak256("\x19Ethereum Signed Message:\n"${message length}${message})
// addr = ecrecover(hash, signature)
//
// Note, the signature must conform to the secp256k1 curve R, S and V values, where
// the V value must be be 27 or 28 for legacy reasons.
//
// https://github.com/ethereum/go-ethereum/wiki/Management-APIs#personal_ecRecover
func (s *PrivateAccountAPI) EcRecover(ctx context.Context, data, sig hexutil.Bytes) (common.Address, error) {
    if len(sig) != 65 {
        return common.Address{}, fmt.Errorf("signature must be 65 bytes long")
    }
    if sig[64] != 27 && sig[64] != 28 {
        return common.Address{}, fmt.Errorf("invalid Ethereum signature (V is not 27 or 28)")
    }
    sig[64] -= 27 // Transform yellow paper V from 27/28 to 0/1

    rpk, err := crypto.Ecrecover(signHash(data), sig)
    if err != nil {
        return common.Address{}, err
    }
    pubKey := crypto.ToECDSAPub(rpk)
    recoveredAddr := crypto.PubkeyToAddress(*pubKey)
    return recoveredAddr, nil
}
digital-signature ethereum geth
2个回答
1
投票

R 和 S 不足以恢复签名者的公钥。 V 提供了消除歧义所需的额外信息。请参阅https://ethereum.stackexchange.com/questions/15766/what-does-v-r-s-in-eth-gettransactionbyhash-mean


0
投票

我最近经历了一次不幸的加密骗局,但是,由于 Easyreclaimcryptorecovery 提供的出色服务,我已经能够收回大部分资金。他们的平台高效且易于使用;他们甚至在整个过程中给我及时的更新,并帮助我在几天内快速得到结果!我向任何需要此类服务的人推荐他们! 通过 [电子邮件受保护]

联系
© www.soinside.com 2019 - 2024. All rights reserved.