Skip to content

Instantly share code, notes, and snippets.

Avatar
😼

Sergey Saiyan sergey-sw

😼
  • Ozon
  • Tbilisi
  • 13:28 (UTC +04:00)
View GitHub Profile
View Byte2Hex.java
public static void main(String[] args) {
System.out.println(bytesToHex(getKey(860767L)));
}
final protected static char[] hexArray = "0123456789ABCDEF".toCharArray();
public static String bytesToHex(byte[] bytes) {
char[] hexChars = new char[bytes.length * 2 ];
for ( int j = 0; j < bytes.length; j++ ) {
int v = bytes[j] & 0xFF;
hexChars[j * 2 ] = hexArray[v >>> 4];