Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 267 for tenc (0.18 sec)

  1. src/crypto/rsa/boring.go

    		Q = b.orig.Primes[1]
    		Dp = b.orig.Precomputed.Dp
    		Dq = b.orig.Precomputed.Dq
    		Qinv = b.orig.Precomputed.Qinv
    	}
    	key, err := boring.NewPrivateKeyRSA(bbig.Enc(N), bbig.Enc(E), bbig.Enc(D), bbig.Enc(P), bbig.Enc(Q), bbig.Enc(Dp), bbig.Enc(Dq), bbig.Enc(Qinv))
    	if err != nil {
    		return nil, err
    	}
    	b.key = key
    	privCache.Put(priv, b)
    	return key, nil
    }
    
    func publicKeyEqual(k1, k2 *PublicKey) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 00:30:19 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

            final String queryString = request.getQueryString();
            if (StringUtil.isNotBlank(queryString)) {
                return parseQueryString(queryString, enc);
            }
            return Collections.emptyMap();
        }
    
        protected Map<String, String[]> parseQueryString(final String queryString, final String enc) throws IOException {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. docs/site-replication/run-ssec-object-replication.sh

    ./mc cp /tmp/data/encrypted minio1/test-bucket/encrypted --enc-c "minio1/test-bucket/encrypted=${TEST_MINIO_ENC_KEY}" --insecure
    ./mc cp /tmp/data/defpartsize minio1/test-bucket/defpartsize --enc-c "minio1/test-bucket/defpartsize=${TEST_MINIO_ENC_KEY}" --insecure
    ./mc put /tmp/data/custpartsize minio1/test-bucket/custpartsize --enc-c "minio1/test-bucket/custpartsize=${TEST_MINIO_ENC_KEY}" --insecure --part-size 50MiB
    set +x
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. src/encoding/hex/hex_test.go

    			t.Errorf("#%d: bad return value: got: %d want: %d", i, n, len(dst))
    		}
    		if string(dst) != test.enc {
    			t.Errorf("#%d: got: %#v want: %#v", i, dst, test.enc)
    		}
    		dst = []byte("lead")
    		dst = AppendEncode(dst, test.dec)
    		if string(dst) != "lead"+test.enc {
    			t.Errorf("#%d: got: %#v want: %#v", i, dst, "lead"+test.enc)
    		}
    	}
    }
    
    func TestDecode(t *testing.T) {
    	// Case for decoding uppercase hex characters, since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:30:23 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. src/crypto/aes/block.go

    func expandKeyGo(key []byte, enc, dec []uint32) {
    	// Encryption key setup.
    	var i int
    	nk := len(key) / 4
    	for i = 0; i < nk; i++ {
    		enc[i] = byteorder.BeUint32(key[4*i:])
    	}
    	for ; i < len(enc); i++ {
    		t := enc[i-1]
    		if i%nk == 0 {
    			t = subw(rotw(t)) ^ (uint32(powx[i/nk-1]) << 24)
    		} else if nk > 6 && i%nk == 4 {
    			t = subw(t)
    		}
    		enc[i] = enc[i-nk] ^ t
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. src/crypto/aes/cipher.go

    )
    
    // The AES block size in bytes.
    const BlockSize = 16
    
    // A cipher is an instance of AES encryption using a particular key.
    type aesCipher struct {
    	l   uint8 // only this length of the enc and dec array is actually used
    	enc [28 + 32]uint32
    	dec [28 + 32]uint32
    }
    
    type KeySizeError int
    
    func (k KeySizeError) Error() string {
    	return "crypto/aes: invalid key size " + strconv.Itoa(int(k))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 14:58:19 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/v1/defaults_test.go

    	utilpointer "k8s.io/utils/pointer"
    )
    
    func TestDefaultAdmissionWebhook(t *testing.T) {
    	fail := v1.Fail
    	equivalent := v1.Equivalent
    	never := v1.NeverReinvocationPolicy
    	ten := int32(10)
    	allScopes := v1.AllScopes
    
    	tests := []struct {
    		name     string
    		original runtime.Object
    		expected runtime.Object
    	}{
    		{
    			name: "ValidatingWebhookConfiguration",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. misc/cgo/gmp/pi.go

    	numer.Mul(numer, tmp1.SetInt64(k))
    	denom.Mul(denom, tmp1.SetInt64(y2))
    }
    
    func eliminateDigit(d int64) {
    	accum.Sub(accum, tmp1.Mul(denom, tmp1.SetInt64(d)))
    	accum.Mul(accum, ten)
    	numer.Mul(numer, ten)
    }
    
    func main() {
    	i := 0
    	k := int64(0)
    	for {
    		d := int64(-1)
    		for d < 0 {
    			k++
    			nextTerm(k)
    			d = extractDigit()
    		}
    		eliminateDigit(d)
    		fmt.Printf("%c", d+'0')
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 22:32:35 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/internal/diff/testdata/end.txt

    -- old --
    1
    2
    3
    4
    5
    6
    7
    eight
    nine
    ten
    eleven
    -- new --
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    -- diff --
    diff old new
    --- old
    +++ new
    @@ -5,7 +5,6 @@
     5
     6
     7
    -eight
    -nine
    -ten
    -eleven
    +8
    +9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 16:56:29 UTC 2022
    - 178 bytes
    - Viewed (0)
  10. src/crypto/internal/hpke/hpke_test.go

    			}
    
    			for _, enc := range parseVectorEncryptions(vector.Encryptions) {
    				t.Run("seq num "+enc["sequence number"], func(t *testing.T) {
    					seqNum, err := strconv.Atoi(enc["sequence number"])
    					if err != nil {
    						t.Fatal(err)
    					}
    					context.seqNum = uint128{lo: uint64(seqNum)}
    					expectedNonce := mustDecodeHex(t, enc["nonce"])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top