MCPcopy Create free account
hub / github.com/deathmemory/FridaContainer / printByteArray

Function printByteArray

utils/FCAnd.ts:385–393  ·  view source on GitHub ↗
(jbytes: any)

Source from the content-addressed store, hash-verified

383 * @param jbytes
384 */
385 export function printByteArray(jbytes: any) {
386 // return JSON.stringify(jbytes);
387 var result = "";
388 for (var i = 0; i < jbytes.length; ++i) {
389 result += " ";
390 result += jbytes[i].toString(16);
391 }
392 return result;
393 }
394
395 /**
396 * trace java methods 默认类

Callers

nothing calls this directly

Calls 1

toStringMethod · 0.45

Tested by

no test coverage detected