Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 225 for Tkey (0.05 sec)

  1. internal/crypto/key.go

    }
    
    // SealedKey represents a sealed object key. It can be stored
    // at an untrusted location.
    type SealedKey struct {
    	Key       [64]byte // The encrypted and authenticated object-key.
    	IV        [32]byte // The random IV used to encrypt the object-key.
    	Algorithm string   // The sealing algorithm used to encrypt the object key.
    }
    
    // Seal encrypts the ObjectKey using the 256 bit external key and IV. The sealed
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 20:28:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/apiserver.local.config/certificates/apiserver.key

    hzxuzhonghu <******@****.***> 1515463525 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 02:05:25 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  3. src/crypto/rsa/pss.go

    	if err != nil {
    		return nil, err
    	}
    
    	if boring.Enabled {
    		bkey, err := boringPrivateKey(priv)
    		if err != nil {
    			return nil, err
    		}
    		// Note: BoringCrypto always does decrypt "withCheck".
    		// (It's not just decrypt.)
    		s, err := boring.DecryptRSANoPadding(bkey, em)
    		if err != nil {
    			return nil, err
    		}
    		return s, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. pkg/registry/core/service/ipallocator/controller/repairip.go

    	}
    	defer r.svcQueue.Done(eKey)
    
    	err := r.syncService(eKey)
    	r.handleSvcErr(err, eKey)
    
    	return true
    }
    
    func (r *RepairIPAddress) handleSvcErr(err error, key string) {
    	if err == nil {
    		r.svcQueue.Forget(key)
    		return
    	}
    
    	if r.svcQueue.NumRequeues(key) < maxRetries {
    		klog.V(2).InfoS("Error syncing Service, retrying", "service", key, "err", err)
    		r.svcQueue.AddRateLimited(key)
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. cmd/config-current.go

    		})
    	}
    
    	for _, hkv := range h {
    		key := hkv.Key
    		if envOnly {
    			key = config.EnvPrefix + strings.ToTitle(subSys) + config.EnvWordDelimiter + strings.ToTitle(hkv.Key)
    		}
    		help = append(help, config.HelpKV{
    			Key:         key,
    			Description: hkv.Description,
    			Optional:    hkv.Optional,
    			Type:        hkv.Type,
    		})
    	}
    
    	return Help{
    		SubSys:          subSys,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/collection/ArrayMapTest.java

            SerializeUtil.serialize(amap);
            System.out.println("ArrayMap serialize:" + (System.currentTimeMillis() - start));
        }
    
        private static class MyKey {
            Object _key;
    
            MyKey(Object key) {
                _key = key;
            }
    
            @Override
            public int hashCode() {
                return 0;
            }
    
            @Override
            public boolean equals(Object o) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileActivationContext.java

        }
    
        /**
         * Sets the user properties to use for interpolation and profile activation. The user properties have been
         * configured directly by the user on his discretion, e.g. via the {@code -Dkey=value} parameter on the command
         * line.
         *
         * @param userProperties The user properties, may be {@code null}.
         * @return This context, never {@code null}.
         */
        @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingRequest.java

         * on his discretion, e.g. via the {@code -Dkey=value} parameter on the command line.
         *
         * @return The user properties, never {@code null}.
         */
        Properties getUserProperties();
    
        /**
         * Sets the user properties to use for interpolation. The user properties have been configured directly by the user
         * on his discretion, e.g. via the {@code -Dkey=value} parameter on the command line.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. cmd/signature-v2.go

    	for key := range headers {
    		lkey := strings.ToLower(key)
    		if !strings.HasPrefix(lkey, "x-amz-") {
    			continue
    		}
    		keys = append(keys, lkey)
    		keyval[lkey] = strings.Join(headers[key], ",")
    	}
    	sort.Strings(keys)
    	var canonicalHeaders []string
    	for _, key := range keys {
    		canonicalHeaders = append(canonicalHeaders, key+":"+keyval[key])
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/hmac.go

    // If h is not recognized, NewHMAC returns nil.
    func NewHMAC(h func() hash.Hash, key []byte) hash.Hash {
    	ch := h()
    	md := hashToMD(ch)
    	if md == nil {
    		return nil
    	}
    
    	// Note: Could hash down long keys here using EVP_Digest.
    	hkey := bytes.Clone(key)
    	hmac := &boringHMAC{
    		md:        md,
    		size:      ch.Size(),
    		blockSize: ch.BlockSize(),
    		key:       hkey,
    	}
    	hmac.Reset()
    	return hmac
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top