aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/org/openintents/openpgp/util/OpenPgpUtils.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/openintents/openpgp/util/OpenPgpUtils.java b/src/org/openintents/openpgp/util/OpenPgpUtils.java
index e24c937a..416b2841 100644
--- a/src/org/openintents/openpgp/util/OpenPgpUtils.java
+++ b/src/org/openintents/openpgp/util/OpenPgpUtils.java
@@ -67,7 +67,7 @@ public class OpenPgpUtils {
}
private static String convertKeyIdToHex32bit(long keyId) {
- String hexString = Long.toHexString(keyId & 0xffffffffL).toLowerCase(Locale.US);
+ String hexString = Long.toHexString(keyId & 0xffffffffL).toLowerCase(Locale.ENGLISH);
while (hexString.length() < 8) {
hexString = "0" + hexString;
}