Skip to content

Commit

Permalink
Make FingerprintUtil.prettifyFingerprint() return uppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
vanitasvitae committed Jul 17, 2024
1 parent 6ee29e1 commit 16a0063
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public static void writeKeyID(long keyID, byte[] bytes)
public static String prettifyFingerprint(byte[] fingerprint)
{
// -DM Hex.toHexString
String hex = Hex.toHexString(fingerprint);
String hex = Hex.toHexString(fingerprint).toUpperCase();
StringBuilder sb = new StringBuilder();
switch (hex.length())
{
Expand Down

0 comments on commit 16a0063

Please sign in to comment.