Skip to content

Commit 16a0063

Browse files
committed
Make FingerprintUtil.prettifyFingerprint() return uppercase
1 parent 6ee29e1 commit 16a0063

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pg/src/main/java/org/bouncycastle/bcpg/FingerprintUtil.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ public static void writeKeyID(long keyID, byte[] bytes)
141141
public static String prettifyFingerprint(byte[] fingerprint)
142142
{
143143
// -DM Hex.toHexString
144-
String hex = Hex.toHexString(fingerprint);
144+
String hex = Hex.toHexString(fingerprint).toUpperCase();
145145
StringBuilder sb = new StringBuilder();
146146
switch (hex.length())
147147
{

0 commit comments

Comments
 (0)