Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 93 for keyId (0.05 sec)

  1. 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)
  2. pkg/serviceaccount/openidmetadata.go

    	alg, err := algorithmFromPublicKey(publicKey)
    	if err != nil {
    		return nil, err
    	}
    
    	keyID, err := keyIDFromPublicKey(publicKey)
    	if err != nil {
    		return nil, err
    	}
    
    	jwk := &jose.JSONWebKey{
    		Algorithm: string(alg),
    		Key:       publicKey,
    		KeyID:     keyID,
    		Use:       "sig",
    	}
    
    	if !jwk.IsPublic() {
    		return nil, fmt.Errorf("JWK was not a public key! JWK: %v", jwk)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 12 00:23:31 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  3. 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)
  4. tests/util/pki/apiserver.crt

                    CA:FALSE
                X509v3 Subject Key Identifier: 
                    A6:8B:6C:95:AC:92:92:19:DC:7B:27:F0:F3:83:7E:F6:99:56:B2:1A
                X509v3 Authority Key Identifier: 
                    keyid:84:72:75:5A:AC:11:F6:26:14:EA:9A:7D:04:D7:5E:B1:37:0E:A7:D3
                    DirName:/CN=127.0.0.1@1517693702
                    serial:D1:86:FE:78:3E:4D:37:73
    
                X509v3 Extended Key Usage: 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Aug 10 19:14:58 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. maven-compat/src/main/java/org/apache/maven/project/artifact/DefaultMetadataSource.java

    /**
     * This realizes the metadata source via the default hint to provide backward-compat with Maven 2.x whose Plexus version
     * registered component descriptors twice: once keyed by role+roleHint and once keyed by role only. This effectively
     * made the metadata source available with its original role hint ("maven") as well as the default hint.
     *
     */
    @Named
    @Singleton
    @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.h

    // contains maps keyed by the node number of the SavedObjectGraph, and map to an
    // object of the corresponding type. So, if node 2 in the object graph is a
    // variable, PartiallyRevivedObjects.variables[2] exists, and corresponds to a
    // tensorflow::Variable object. The only exception to this is the
    // "signatures_map", which is keyed by the "signature" key
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 23:21:36 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/util/HMACT64.java

    /* HMACT64 keyed hashing algorithm
     * Copyright (C) 2003 "Eric Glass" <jcifs at samba dot org>
     *
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     *
     * This library is distributed in the hope that it will be useful,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/util/HMACT64.java

    /* HMACT64 keyed hashing algorithm
     * Copyright (C) 2003 "Eric Glass" <jcifs at samba dot org>
     *
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     *
     * This library is distributed in the hope that it will be useful,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
Back to top