Class Base16


  • public class Base16
    extends java.lang.Object
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  Base16.Codec  
    • Constructor Summary

      Constructors 
      Constructor Description
      Base16()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static byte[] decode​(java.lang.String b16)  
      static java.lang.String encode​(byte[] bytes)  
      static java.lang.String encode​(byte[] bytes, boolean upper)  
      static java.lang.String encode​(byte[] bytes, boolean upper, int maxLength)  
      static java.lang.String encode​(byte[] bytes, int maxLength)  
      • Methods inherited from class java.lang.Object

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

      • Base16

        public Base16()
    • Method Detail

      • encode

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

        public static java.lang.String encode​(byte[] bytes,
                                              int maxLength)
      • encode

        public static java.lang.String encode​(byte[] bytes,
                                              boolean upper)
      • encode

        public static java.lang.String encode​(byte[] bytes,
                                              boolean upper,
                                              int maxLength)
      • decode

        public static byte[] decode​(java.lang.String b16)