Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 177 for subkeys (0.25 sec)

  1. src/crypto/des/cipher.go

    	for i := 0; i < 8; i++ {
    		left, right = feistel(left, right, c.cipher1.subkeys[2*i], c.cipher1.subkeys[2*i+1])
    	}
    	for i := 0; i < 8; i++ {
    		right, left = feistel(right, left, c.cipher2.subkeys[15-2*i], c.cipher2.subkeys[15-(2*i+1)])
    	}
    	for i := 0; i < 8; i++ {
    		left, right = feistel(left, right, c.cipher3.subkeys[2*i], c.cipher3.subkeys[2*i+1])
    	}
    
    	left = (left << 31) | (left >> 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. src/crypto/des/block.go

    	"internal/byteorder"
    	"sync"
    )
    
    func cryptBlock(subkeys []uint64, dst, src []byte, decrypt bool) {
    	b := byteorder.BeUint64(src)
    	b = permuteInitialBlock(b)
    	left, right := uint32(b>>32), uint32(b)
    
    	left = (left << 1) | (left >> 31)
    	right = (right << 1) | (right >> 31)
    
    	if decrypt {
    		for i := 0; i < 8; i++ {
    			left, right = feistel(left, right, subkeys[15-2*i], subkeys[15-(2*i+1)])
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch_test.go

          mapKey:
            nonNilKey: foo
      - description: nested map that all subkeys are nil
        originalObj:
          mapKey:
            nilKey1: null
            nilKey2: null
        expectedWithNull:
          mapKey:
            nilKey1: null
            nilKey2: null
        expectedWithoutNull: {}
      - description: nested map that all subkeys are non-nil
        originalObj:
          mapKey:
            nonNilKey1: foo
            nonNilKey2: bar
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/ratcheting.go

    		schemaArgs:  args,
    		correlation: correlation,
    	}
    }
    
    // getValidateOption provides a kube-openapi validate.Option for SchemaValidator
    // that injects a ratchetingValueValidator to be used for all subkeys and subindices
    func (r *ratchetingValueValidator) getValidateOption() validate.Option {
    	return func(svo *validate.SchemaValidatorOptions) {
    		svo.NewValidatorForField = r.SubPropertyValidator
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 21:17:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest.groovy

            (1..<keyringsAscii.size()).every {
                keyringsAscii[it - 1].publicKey.keyID < keyringsAscii[it].publicKey.keyID
            }
        }
    
        def "deduplicated keys are chosen by subkeys amount"() {
            given:
            javaLibrary()
            file("gradle/verification-keyring.keys").copyFrom(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  6. src/syscall/syscall_windows.go

    }
    
    // RegEnumKeyEx enumerates the subkeys of an open registry key.
    // Each call retrieves information about one subkey. name is
    // a buffer that should be large enough to hold the name of the
    // subkey plus a null terminating character. nameLen is its
    // length. On return, nameLen will contain the actual length of the
    // subkey.
    //
    // Should name not be large enough to hold the subkey, this function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	f, err := os.Open(a.Objdir + name)
    	if err != nil {
    		return err
    	}
    	defer f.Close()
    	_, _, err = c.Put(cache.Subkey(a.actionID, name), f)
    	return err
    }
    
    func (b *Builder) findCachedObjdirFile(a *Action, c cache.Cache, name string) (string, error) {
    	file, _, err := cache.GetFile(c, cache.Subkey(a.actionID, name))
    	if err != nil {
    		return "", fmt.Errorf("loading cached file %s: %w", name, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. internal/config/identity/openid/jwt_test.go

              "kid":"2011-04-29"}
           ]
         }`
    
    	pubKeys := publicKeys{
    		RWMutex: &sync.RWMutex{},
    		pkMap:   map[string]interface{}{},
    	}
    	err := pubKeys.parseAndAdd(bytes.NewBuffer([]byte(jsonkey)))
    	if err != nil {
    		t.Fatal("Error loading pubkeys:", err)
    	}
    	if len(pubKeys.pkMap) != 1 {
    		t.Fatalf("Expected 1 keys, got %d", len(pubKeys.pkMap))
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    )
    
    type claimsTest struct {
    	name                string
    	options             Options
    	optsFunc            func(*Options)
    	signingKey          *jose.JSONWebKey
    	pubKeys             []*jose.JSONWebKey
    	claims              string
    	want                *user.DefaultInfo
    	wantSkip            bool
    	wantErr             string
    	wantInitErr         string
    	wantHealthErrPrefix string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/config.go

    	// TODO make these check if any subset has a matching annotation
    	return len(c.Subsets) > 0 && c.Subsets[0].Annotations != nil && strings.HasPrefix(c.Subsets[0].Annotations[annotation.InjectTemplates.Name], "grpc-")
    }
    
    func (c Config) IsTProxy() bool {
    	// TODO this could be HasCustomInjectionMode
    	return len(c.Subsets) > 0 && c.Subsets[0].Annotations != nil && c.Subsets[0].Annotations[annotation.SidecarInterceptionMode.Name] == "TPROXY"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top