AND (&)
100
101
---
100
OR (|)
100
101
---
101
// Copyright (c) 2021 Autarkysoft | |
// Distributed under the MIT software license. | |
// See http://www.opensource.org/licenses/mit-license.php. | |
// This is using Bitcoin.Net 0.9.0 | |
// Install from nuget using `Install-Package Autarkysoft.Bitcoin -Version 0.9.0` | |
using Autarkysoft.Bitcoin; | |
using Autarkysoft.Bitcoin.Blockchain.Blocks; | |
using Autarkysoft.Bitcoin.Blockchain.Scripts; | |
using Autarkysoft.Bitcoin.Blockchain.Transactions; |
5KMWmYkn5YWkJnUDG4utD9L1HXQv3DBseqqCGsQXmthc13VAyRT | |
5KMWmYkn5YWkJnUDG4utD9L1HXQv3DBseqqCGsQXmthc15Lpsww | |
5KMWmYkn5YWkJnUDG4utD9L1HXQv3DBseqqCGsQXmthc1GjcJ1z | |
5KMWmYkn5YWkJnUDG4utD9L1HXQv3DBseqqCGsQXmthc1JmgZj1 | |
5KMWmYkn5YWkJnUDG4utD9L1HXQv3DBseqqCGsQXmthc1TgSYfK | |
5KMWmYkn5YWkJnUDG4utD9L1HXQv3DBseqqCGsQXmthc1YH8BhJ | |
5KMWmYkn5YWkJnUDG4utD9L1HXQv3DBseqqCGsQXmthc1eGCVAm | |
5KMWmYkn5YWkJnUDG4utD9L1HXQv3DBseqqCGsQXmthc1oGcLBe | |
5KMWmYkn5YWkJnUDG4utD9L1HXQv3DBseqqCGsQXmthc1u5JfVe | |
5KMWmYkn5YWkJnUDG4utD9L1HXQv3DBseqqCGsQXmthc218erjy |
using Autarkysoft.Bitcoin; | |
using Autarkysoft.Bitcoin.Blockchain; | |
using Autarkysoft.Bitcoin.Blockchain.Scripts; | |
using Autarkysoft.Bitcoin.Blockchain.Scripts.Operations; | |
using Autarkysoft.Bitcoin.Cryptography.Asymmetric.KeyPairs; | |
using Autarkysoft.Bitcoin.Cryptography.Hashing; | |
using Autarkysoft.Bitcoin.Encoders; | |
public class AddressPlayground | |
{ |
using System; | |
using System.Runtime.CompilerServices; | |
namespace Autarkysoft.Cryptocurrency.Cryptography.Hashing | |
{ | |
/// <summary> | |
/// https://tools.ietf.org/html/rfc6234 | |
/// </summary> | |
public class Sha512 : IHashFunction, IDisposable | |
{ |
using Autarkysoft.Cryptocurrency; // Library not public yet! | |
using Autarkysoft.Cryptocurrency.Coins; | |
using Autarkysoft.Cryptocurrency.Cryptography.Asymmetric.EllipticCurve; | |
using Autarkysoft.Cryptocurrency.Cryptography.Hashing; | |
using Autarkysoft.Cryptocurrency.Extensions; | |
using Autarkysoft.Cryptocurrency.KeyPairs; | |
using System; | |
using System.Numerics; | |
namespace TestLibrary |
using CryptoCurrency.Net.Coins; | |
using CryptoCurrency.Net.Extensions; | |
using CryptoCurrency.Net.Hashing; | |
using System; | |
using System.Linq; | |
using System.Text; | |
namespace CryptoCurrency.Net.KeyPairs | |
{ | |
/// <summary> |
public class InpcBase : INotifyPropertyChanged | |
{ | |
public InpcBase() | |
{ | |
PropertyDependencyMap = new Dictionary<string, List<string>>(); | |
foreach (var property in GetType().GetProperties()) | |
{ | |
var attributes = property.GetCustomAttributes<DependsOnPropertyAttribute>(); | |
foreach (var dependsAttr in attributes) |
<Window x:Class="TestIconvert.MainWindow" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:vm="clr-namespace:TestIconvert" | |
Title="MainWindow" Height="350" Width="525"> | |
<Window.DataContext> | |
<vm:MainWindowViewModel/> | |
</Window.DataContext> | |
<Window.Resources> | |
<vm:CustomConverter x:Key="myConverter"/> |
using System; | |
using System.Collections.Generic; | |
namespace Fibonachi | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.Write("Number: "); |