Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for normaliseKeyId (0.27 sec)

  1. platforms/software/security/src/main/java/org/gradle/plugins/signing/signatory/pgp/PgpKeyId.java

            }
    
            String normalised = normaliseKeyId(keyId);
            try {
                return Long.parseLong(normalised, 16);
            } catch (NumberFormatException e) {
                throw new IllegalArgumentException("the key id \'" + keyId + "\' is not a valid hex string");
            }
        }
    
        private static String normaliseKeyId(String keyId) {
            String keyIdUpped = keyId.toUpperCase(Locale.ROOT);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top