100
101
---
100
100
101
---
101
| theKey[0] = new PKeyChar('5');//5 | |
| theKey[1] = new PKeyChar('J');//Steve Jobs | |
| theKey[2] = new PKeyChar('k');//kevlar | |
| theKey[3] = new PKeyChar(new char[] { 'P', '3' });//Pi, 3.14 | |
| theKey[4] = new PKeyChar('A');//Atari | |
| theKey[5] = new PKeyChar('p');//parachute | |
| theKey[6] = new PKeyChar('j');//Jet, F16, Mig | |
| theKey[7] = new PKeyChar('w');//wing from the previous pic | |
| theKey[8] = new PKeyChar('G');//Gutenberg | |
| theKey[9] = new PKeyChar('Y');//Yo-Yo |
| //we have a List<int> SuperList that is generated seperately and | |
| // contains the number of loops and their lengths e.g. {3, 5, 2} | |
| //and our loop should be like this: | |
| //for (int i = 0; i < 3; i++) | |
| // for (int j = 0; j < 5; j++) | |
| // for (int k = 0; k < 2; k++) | |
| // //use i, j, k in a function | |
| List<int> SuperList = new List<int>(); | |
| int max = 1; |
| using System; | |
| using System.Collections.Generic; | |
| namespace Fibonachi | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| Console.Write("Number: "); |
| <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"/> |
| 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) |
| 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> |
| 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 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.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 | |
| { |