Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 0123456789ABCDEF (0.17 sec)

  1. android/guava/src/com/google/common/hash/HashCode.java

        for (byte b : bytes) {
          sb.append(hexDigits[(b >> 4) & 0xf]).append(hexDigits[b & 0xf]);
        }
        return sb.toString();
      }
    
      private static final char[] hexDigits = "0123456789abcdef".toCharArray();
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Apr 20 18:43:59 GMT 2021
    - 12.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/BaseEncoding.java

       */
      public static BaseEncoding base32Hex() {
        return BASE32_HEX;
      }
    
      private static final BaseEncoding BASE16 = new Base16Encoding("base16()", "0123456789ABCDEF");
    
      /**
       * The "base16" encoding specified by <a href="http://tools.ietf.org/html/rfc4648#section-8">RFC
       * 4648 section 8</a>, Base 16 Encoding. (This is the same as the base 16 encoding from <a
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Mar 15 16:33:32 GMT 2024
    - 41.7K bytes
    - Viewed (0)
Back to top