(byte[] bytes)
| 3288 | } |
| 3289 | |
| 3290 | static String hex(byte[] bytes) { |
| 3291 | StringBuilder sb = new StringBuilder(); |
| 3292 | for (byte b : bytes) |
| 3293 | sb.append(String.format("%02x", b)); |
| 3294 | return sb.toString(); |
| 3295 | } |
| 3296 | |
| 3297 | static String getFingerprint(Context context) { |
| 3298 | return getFingerprint(context, "SHA1"); |