Class Base58


  • public class Base58
    extends java.lang.Object
    Copy Bitcoin source code, remove Base58 unrelated code
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static char[] ALPHABET  
    • Constructor Summary

      Constructors 
      Constructor Description
      Base58()  
    • Method Summary

      Modifier and Type Method Description
      static byte[] decode​(java.lang.String input)  
      static java.lang.String encode​(byte[] input)  
      static void main​(java.lang.String[] args)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • ALPHABET

        public static final char[] ALPHABET
    • Constructor Detail

      • Base58

        public Base58()
    • Method Detail

      • encode

        public static java.lang.String encode​(byte[] input)
      • decode

        public static byte[] decode​(java.lang.String input)
      • main

        public static void main​(java.lang.String[] args)