コード例 #1
0
 /// <summary>
 /// Constructor. Reconstructs an extended key from the Base58 representations of
 /// the public key and corresponding private key.
 /// </summary>
 public ExtKey(BitcoinExtPubKey extPubKey, BitcoinSecret key)
     : this(extPubKey.ExtPubKey, key.PrivateKey)
 {
 }
コード例 #2
0
ファイル: ExtKey.cs プロジェクト: woutersmit/NBitcoin
		public ExtKey(BitcoinExtPubKey extPubKey, BitcoinSecret key)
			: this(extPubKey.ExtPubKey, key.PrivateKey)
		{
		}
コード例 #3
0
 public BitcoinExtKey(BitcoinExtPubKey bitcoinExtPubKey, Key key)
     : base(new ExtKey(bitcoinExtPubKey.ExtPubKey, key), bitcoinExtPubKey.Network)
 {
 }