【发布时间】:2021-03-18 16:01:34
【问题描述】:
我正在使用 NBitcoin Nuget 开发一个解决方案,突然我发现它为一些等于 1 和 256 的私钥生成了重复的地址,并且...... 我用来生成比特币地址的代码如下:
_bitcoin_address=_private_key.PubKey.GetAddress(ScriptPubKeyType.Legacy, Network.Main).ToString();
当 _private_key=1 或 _private_key=512 相同地址时,例如1BgGZ9tcN4rm9KBzDn7KprQz87SZ26SAMH生成,_private_key=4或_private_key=256时出现同样的问题。
这是一个错误还是我犯了一个错误?
您可以使用以下代码作为 POC:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Threading.Tasks;
using NBitcoin;
namespace Bitcoin_address_generation
{
class Program
{
static void Main(string[] args)
{
//generating a private key that is equal to 1
byte[] _priv_bytes1 = IntegerToBytes(1, 32);
Key _private_key1 = new Key();
_private_key1.FromBytes(_priv_bytes1);
//generating a private key that is equal to 256
byte[] _priv_bytes256 = IntegerToBytes(256, 32);
Key _private_key256 = new Key();
_private_key256.FromBytes(_priv_bytes1);
Console.WriteLine(_private_key1.PubKey.GetAddress(ScriptPubKeyType.Legacy, Network.Main).ToString());
Console.WriteLine(_private_key256.PubKey.GetAddress(ScriptPubKeyType.Legacy, Network.Main).ToString());
Console.ReadKey();
}
/// <summary>
/// convert a big integer to byte array
/// </summary>
/// <param name="s"></param>
/// <param name="qLength"></param>
/// <returns></returns>
public static byte[] IntegerToBytes(BigInteger s, int qLength)
{
byte[] bytes = s.ToByteArray();
if (qLength < bytes.Length)
{
byte[] tmp = new byte[qLength];
Array.Copy(bytes, bytes.Length - tmp.Length, tmp, 0, tmp.Length);
return tmp;
}
if (qLength > bytes.Length)
{
byte[] tmp = new byte[qLength];
Array.Copy(bytes, 0, tmp, tmp.Length - bytes.Length, bytes.Length);
return tmp;
}
return bytes;
}
}
}
【问题讨论】:
-
IntegerToBytes的定义缺失,暂时投反对票,直到修复为止