MCPcopy Create free account
hub / github.com/cconlon/kerberos-java-gssapi / printByteArray

Method printByteArray

src/java/edu/mit/jgss/DerUtil.java:90–96  ·  view source on GitHub ↗
(byte[] input)

Source from the content-addressed store, hash-verified

88 * Print a byte[], for debug purposes.
89 */
90 public static void printByteArray(byte[] input)
91 {
92 for (int i = 0; i < input.length; i++ ) {
93 System.out.format("%02X ", input[i]);
94 }
95 System.out.println();
96 }
97
98}
99

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected