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

Method printByteArray

examples/Util.java:199–205  ·  view source on GitHub ↗
(byte[] input)

Source from the content-addressed store, hash-verified

197 * Print a byte[], for debug purposes.
198 */
199 public static void printByteArray(byte[] input)
200 {
201 for (int i = 0; i < input.length; i++ ) {
202 System.out.format("%02X ", input[i]);
203 }
204 System.out.println();
205 }
206
207 /* Based on http://snippets.dzone.com/posts/show/93 */
208 public static byte[] intToByteArray(int input)

Callers 3

WriteTokenMethod · 0.95
ReadTokenMethod · 0.95
ReadTokenMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected