Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 410 for keyRing (0.34 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            def keyring = newKeyRing()
            keyServerFixture.registerPublicKey(keyring.publicKey)
            def pkId = toHexString(keyring.publicKey.fingerprint)
            createMetadataFile {
                keyServer(keyServerFixture.uri)
                verifySignatures()
                // only the new keyring key is published and available
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  2. platforms/software/security/src/test/groovy/org/gradle/security/internal/SecuritySupportSpec.groovy

            given:
            def keyringFile = new File(this.class.getResource("/keyrings/valid-with-extra-metadata.keys").getFile())
    
            when:
            def keyrings = SecuritySupport.loadKeyRingFile(keyringFile)
    
            then:
            keyrings.size() == 5
            keyrings.forEach { keyRing ->
                keyRing.publicKeys.forEachRemaining { publicKey ->
                    assert publicKey.getUserAttributes().size() == 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. platforms/software/security/src/testFixtures/groovy/org/gradle/security/fixtures/SigningFixtures.groovy

            generator
        }
    
        private static class Holder {
            static final KeyRing VALID_KEYRING = new KeyRing("gradle")
            static final KeyRing INVALID_KEYRING = new KeyRing("invalid-key-ring")
        }
    
        private static class KeyRing {
            private final PgpSignatory signatory
            private final PGPPublicKey publicKey
            private final PGPSecretKey secretKey
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. pkg/credentialprovider/plugins.go

    	for _, key := range stringKeys {
    		provider := providers[key]
    		if provider.Enabled() {
    			klog.V(4).Infof("Registering credential provider: %v", key)
    			keyring.Providers = append(keyring.Providers, provider)
    		}
    	}
    
    	return keyring
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 22:01:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. platforms/software/security/src/main/java/org/gradle/security/internal/PublicKeyServiceChain.java

            private FirstMatchBuilder(PublicKeyResultBuilder delegate) {
                this.delegate = delegate;
            }
    
            @Override
            public void keyRing(PGPPublicKeyRing keyring) {
                delegate.keyRing(keyring);
                hasResult = true;
            }
    
            @Override
            public void publicKey(PGPPublicKey publicKey) {
                delegate.publicKey(publicKey);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. platforms/software/security/src/main/java/org/gradle/security/internal/pgp/BaseInMemoryPgpSignatoryProvider.java

                } else {
                    PgpKeyId expectedKeyId = new PgpKeyId(keyId);
                    for (PGPSecretKeyRing keyring : new JcaPGPSecretKeyRingCollection(in)) {
                        for (PGPSecretKey key : keyring) {
                            if (expectedKeyId.equals(new PgpKeyId(key.getKeyID()))) {
                                return factory.createSignatory(name, key, password);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/rbdpersistentvolumesource.go

    	RBDPool      *string                            `json:"pool,omitempty"`
    	RadosUser    *string                            `json:"user,omitempty"`
    	Keyring      *string                            `json:"keyring,omitempty"`
    	SecretRef    *SecretReferenceApplyConfiguration `json:"secretRef,omitempty"`
    	ReadOnly     *bool                              `json:"readOnly,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    [source,bash]
    ----
    $ gpg --no-default-keyring --keyring gradle/verification-keyring.gpg --recv-keys 8756c4f765c9ac3cb6b85d62379ce192d401ab61
    
    gpg: keybox 'gradle/verification-keyring.gpg' created
    gpg: key 379CE192D401AB61: public key "Bintray (by JFrog) <****>" imported
    gpg: Total number processed: 1
    gpg:               imported: 1
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top