Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 72 for keyId (0.06 sec)

  1. platforms/documentation/docs/src/snippets/signing/configurations/groovy/build.gradle

    plugins {
    // end::use-plugin[]
        id 'java'
    // tag::use-plugin[]
        id 'signing'
    }
    // end::use-plugin[]
    
    
    group = 'gradle'
    version = '1.0'
    
    // Typically set in ~/.gradle/gradle.properties
    project['signing.keyId'] = "24875D73"
    project['signing.password'] = "gradle"
    project['signing.secretKeyRingFile'] = file("secKeyRingFile.gpg").absolutePath
    
    // tag::sign-runtime-elements[]
    signing {
        sign configurations.runtimeElements
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 484 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/signing/tasks/kotlin/build.gradle.kts

    plugins {
        signing
    }
    
    // Typically set in ~/.gradle/gradle.properties
    extra["signing.keyId"] = "24875D73"
    extra["signing.password"] = "gradle"
    extra["signing.secretKeyRingFile"] = file("secKeyRingFile.gpg").absolutePath
    
    // tag::sign-task[]
    tasks.register<Zip>("stuffZip") {
        archiveBaseName = "stuff"
        from("src/stuff")
    }
    
    signing {
        sign(tasks["stuffZip"])
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 393 bytes
    - Viewed (0)
  3. platforms/software/security/src/main/java/org/gradle/security/internal/EmptyPublicKeyService.java

        private EmptyPublicKeyService() {
    
        }
    
        public static EmptyPublicKeyService getInstance() {
            return EMPTY;
        }
    
        @Override
        public void findByLongId(long keyId, PublicKeyResultBuilder builder) {
    
        }
    
        @Override
        public void findByFingerprint(byte[] fingerprint, PublicKeyResultBuilder builder) {
    
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/signing/tasks/groovy/build.gradle

    plugins {
        id 'signing'
    }
    
    // Typically set in ~/.gradle/gradle.properties
    project.ext['signing.keyId'] = '24875D73'
    project.ext['signing.password'] = 'gradle'
    project.ext['signing.secretKeyRingFile'] = file('secKeyRingFile.gpg').absolutePath
    
    // tag::sign-task[]
    tasks.register('stuffZip', Zip) {
        archiveBaseName = 'stuff'
        from 'src/stuff'
    }
    
    signing {
        sign stuffZip
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 405 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/SignatureVerificationFailure.java

            StringBuilder sb = new StringBuilder();
            appendError(key, value, sb);
            return sb.toString();
        }
    
        private void appendError(String keyId, SignatureError error, StringBuilder sb) {
            sb.append("Artifact was signed with key '").append(keyId).append("' ");
            PGPPublicKey publicKey = error.publicKey;
            switch (error.kind) {
                case PASSED_NOT_TRUSTED:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. cmd/post-policy-fan-out.go

    	"github.com/minio/minio/internal/hash"
    	xhttp "github.com/minio/minio/internal/http"
    	"github.com/minio/minio/internal/kms"
    )
    
    type fanOutOptions struct {
    	Kind     crypto.Type
    	KeyID    string
    	Key      []byte
    	KmsCtx   kms.Context
    	Checksum *hash.Checksum
    	MD5Hex   string
    }
    
    // fanOutPutObject takes an input source reader and fans out multiple PUT operations
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/software/security/src/main/java/org/gradle/security/internal/PublicKeyService.java

     * limitations under the License.
     */
    package org.gradle.security.internal;
    
    import java.io.Closeable;
    
    public interface PublicKeyService extends Closeable {
        void findByLongId(long keyId, PublicKeyResultBuilder builder);
        void findByFingerprint(byte[] fingerprint, PublicKeyResultBuilder builder);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 885 bytes
    - Viewed (0)
  8. internal/config/identity/openid/jwt.go

    		pkey, err := key.DecodePublicKey()
    		if err != nil {
    			return err
    		}
    		pk.add(key.Kid, pkey)
    	}
    
    	return nil
    }
    
    func (pk *publicKeys) add(keyID string, key interface{}) {
    	pk.Lock()
    	defer pk.Unlock()
    
    	pk.pkMap[keyID] = key
    }
    
    func (pk *publicKeys) get(kid string) interface{} {
    	pk.RLock()
    	defer pk.RUnlock()
    	return pk.pkMap[kid]
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 18:10:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. internal/crypto/error.go

    	// ErrInvalidEncryptionKeyID returns error when KMS key id contains invalid characters
    	ErrInvalidEncryptionKeyID = Errorf("KMS KeyID contains unsupported characters")
    )
    
    var (
    	errMissingInternalIV            = Errorf("The object metadata is missing the internal encryption IV")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. cmd/bucket-encryption-handlers.go

    		return
    	}
    
    	// Return error if KMS is not initialized
    	if GlobalKMS == nil {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrKMSNotConfigured), r.URL)
    		return
    	}
    	kmsKey := encConfig.KeyID()
    	if kmsKey != "" {
    		kmsContext := kms.Context{"MinIO admin API": "ServerInfoHandler"} // Context for a test key operation
    		_, err := GlobalKMS.GenerateKey(ctx, &kms.GenerateKeyRequest{Name: kmsKey, AssociatedData: kmsContext})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top