public void Base58Decode()
 {
     foreach (var tuple in testCases)
     {
         var text          = tuple.Item1;
         var expectedBytes = tuple.Item2;
         var actualBytes   = CryptoBytes.Base58Decode(text);
         Assert.AreEqual(BitConverter.ToString(expectedBytes), BitConverter.ToString(actualBytes));
     }
 }
 public void DecodeInvalidChar()
 {
     CryptoBytes.Base58Decode("ab0");
 }