Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 120 for keyRing (0.74 sec)

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

    import javax.annotation.Nullable;
    import java.io.File;
    
    public class BuildTreeDefinedKeys {
        private static final String VERIFICATION_KEYRING_GPG = "verification-keyring.gpg";
        private static final String VERIFICATION_KEYRING_ASCII = "verification-keyring.keys";
    
        private final KeyringFilePublicKeyService keyService;
        private final File keyringsRoot;
    
        private final File effectiveKeyringsFile;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 20 13:00:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/rbdvolumesource.go

    	return b
    }
    
    // WithKeyring sets the Keyring field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Keyring field is set to the value of the last call.
    func (b *RBDVolumeSourceApplyConfiguration) WithKeyring(value string) *RBDVolumeSourceApplyConfiguration {
    	b.Keyring = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 5K bytes
    - Viewed (0)
  3. platforms/software/security/src/main/java/org/gradle/security/internal/PGPUtils.java

        }
    
        /**
         * Returns the number of keys in the given keyring.
         * There is no public API to do this, so we use reflection to access the private field.
         * Public keys iterator is not used because it would require O(n) time to count the keys.
         */
        @SuppressWarnings("unchecked")
        public static int getSize(PGPPublicKeyRing keyring) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. platforms/software/security/src/main/java/org/gradle/security/internal/KeyringStripper.java

                throw new RuntimeException(e);
            }
        }
    
        public static PGPPublicKeyRing strip(PGPPublicKeyRing keyring, KeyFingerPrintCalculator fingerprintCalculator) {
            List<PGPPublicKey> strippedKeys = StreamSupport
                .stream(keyring.spliterator(), false)
                .map(key -> stripKey(key, fingerprintCalculator))
                .collect(Collectors.toList());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. platforms/software/security/src/main/java/org/gradle/security/internal/PublicKeyResultBuilder.java

     */
    package org.gradle.security.internal;
    
    import org.bouncycastle.openpgp.PGPPublicKey;
    import org.bouncycastle.openpgp.PGPPublicKeyRing;
    
    public interface PublicKeyResultBuilder {
        void keyRing(PGPPublicKeyRing keyring);
        void publicKey(PGPPublicKey publicKey);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 884 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/SignatureVerificationFailure.java

            keyService.findByFingerprint(key.getFingerprint(), new PublicKeyResultBuilder() {
                @Override
                public void keyRing(PGPPublicKeyRing keyring) {
                    Set<String> userIds = new TreeSet<>();
                    collectUserIds(userIds, key);
                    keyring.getPublicKeys().forEachRemaining(userkey -> collectUserIds(userIds, userkey));
                    if (!userIds.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. platforms/software/security/src/main/java/org/gradle/security/internal/pgp/BasePgpSignatoryProvider.java

        public PgpSignatory getSignatory(String name) {
            return signatories.get(name);
        }
    
        public PgpSignatory createSignatory(String name, String keyId, File keyRing, String password) {
            return signatories.put(name, factory.createSignatory(name, keyId, keyRing, password));
        }
    
        public PgpSignatory createSignatory(Project project, String name, boolean required) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/software/signing/src/main/java/org/gradle/plugins/signing/signatory/pgp/PgpSignatoryProvider.java

            switch (args.length) {
                case 3:
                    String keyId = args[0].toString();
                    File keyRing = project.file(args[1].toString());
                    String password = args[2].toString();
                    createSignatory(name, keyId, keyRing, password);
                    break;
                case 0:
                    createSignatory(project, name, true);
                    break;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/fake_kuberuntime_manager.go

    		machineInfo:            machineInfo,
    		osInterface:            osInterface,
    		runtimeHelper:          runtimeHelper,
    		runtimeService:         runtimeService,
    		imageService:           imageService,
    		keyring:                keyring,
    		seccompProfileRoot:     fakeSeccompProfileRoot,
    		internalLifecycle:      cm.NewFakeInternalContainerLifecycle(),
    		logReduction:           logreduction.NewLogReduction(identicalErrorDelay),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/signatures/DefaultSignatureVerificationServiceFactory.java

                    keyService.findByLongId(pgpSignature.getKeyID(), new PublicKeyResultBuilder() {
                        @Override
                        public void keyRing(PGPPublicKeyRing keyring) {
    
                        }
    
                        @Override
                        public void publicKey(PGPPublicKey pgpPublicKey) {
                            missing.set(false);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top