Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getKeyID (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/signatures/DefaultSignatureVerificationServiceFactory.java

                    String longIdKey = toLongIdHexString(pgpSignature.getKeyID());
                    if (ignoredKeys.contains(longIdKey)) {
                        result.ignored(longIdKey);
                        continue;
                    }
                    AtomicBoolean missing = new AtomicBoolean(true);
                    keyService.findByLongId(pgpSignature.getKeyID(), new PublicKeyResultBuilder() {
                        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/PgpEntry.java

        boolean checkAndMarkSatisfiedBy(DependencyVerificationConfiguration.TrustedKey trustedKey) {
            if (!trustedKeys.contains(trustedKey.getKeyId())) {
                return false;
            }
            boolean matches = trustedKey.matches(id);
            if (matches) {
                keyDeclaredGlobally(trustedKey.getKeyId());
            }
            return matches;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/software/security/src/main/java/org/gradle/security/internal/PublicKeyDownloadService.java

         */
        private void findMatchingKey(long id, PGPPublicKeyRing keyRing, PublicKeyResultBuilder builder) {
            for (PGPPublicKey publicKey : keyRing) {
                if (publicKey.getKeyID() == id) {
                    builder.publicKey(publicKey);
                    return;
                }
            }
        }
    
        /**
         * A response was sent from the server. This is a keyring, we need to find
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:49:35 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top