Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 259 for keylen (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	PERF_CONTEXT_GUEST_USER               = -0xa00
    	PERF_CONTEXT_MAX                      = -0xfff
    )
    
    type TCPMD5Sig struct {
    	Addr      SockaddrStorage
    	Flags     uint8
    	Prefixlen uint8
    	Keylen    uint16
    	Ifindex   int32
    	Key       [80]uint8
    }
    
    type HDDriveCmdHdr struct {
    	Command uint8
    	Number  uint8
    	Feature uint8
    	Count   uint8
    }
    
    type HDDriveID struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/fi/stopwords.txt

    noille
    noina
    noiksi
    ne
    niiden
    niitä
    niissä
    niistä
    niihin
    niillä
    niiltä
    niille
    niinä
    niiksi
    kuka
    kenen
    kenet
    ketä
    kenessä
    kenestä
    keneen
    kenellä
    keneltä
    kenelle
    kenenä
    keneksi
    ketkä
    keiden
    ketkä
    keitä
    keissä
    keistä
    keihin
    keillä
    keiltä
    keille
    keinä
    keiksi
    mikä
    minkä
    minkä
    mitä
    missä
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_ppc64x.s

    	VXOR V30, V29, V22; \
    	VADDUWM V30, V31, V30
    
    // Load the keys to be used for
    // encryption based on key_len.
    // Keys are in VS0 - VS14
    // depending on key_len.
    // Valid keys sizes are verified
    // here. CR2 is set and used
    // throughout to check key_len.
    #define LOAD_KEYS(blk_key, key_len) \
    	MOVD	$16, R16; \
    	MOVD	$32, R17; \
    	MOVD	$48, R18; \
    	MOVD	$64, R19; \
    	LXVD2X (blk_key)(R0), VS0; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/term/terminal.go

    	keyCtrlU     = 21
    	keyEnter     = '\r'
    	keyEscape    = 27
    	keyBackspace = 127
    	keyUnknown   = 0xd800 /* UTF-16 surrogate area */ + iota
    	keyUp
    	keyDown
    	keyLeft
    	keyRight
    	keyAltLeft
    	keyAltRight
    	keyHome
    	keyEnd
    	keyDeleteWord
    	keyDeleteLine
    	keyClearScreen
    	keyPasteStart
    	keyPasteEnd
    )
    
    var (
    	crlf       = []byte{'\r', '\n'}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
  5. src/crypto/x509/pkcs8_test.go

    func TestPKCS8(t *testing.T) {
    	tests := []struct {
    		name    string
    		keyHex  string
    		keyType reflect.Type
    		curve   elliptic.Curve
    	}{
    		{
    			name:    "RSA private key",
    			keyHex:  pkcs8RSAPrivateKeyHex,
    			keyType: reflect.TypeOf(&rsa.PrivateKey{}),
    		},
    		{
    			name:    "P-224 private key",
    			keyHex:  pkcs8P224PrivateKeyHex,
    			keyType: reflect.TypeOf(&ecdsa.PrivateKey{}),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 16:45:10 UTC 2022
    - 9K bytes
    - Viewed (0)
  6. pkg/controller/certificates/signer/ca_provider.go

    	}
    
    	key, err := keyutil.ParsePrivateKeyPEM(keyPEM)
    	if err != nil {
    		return fmt.Errorf("error reading CA key file %q: %v", p.caLoader.Name(), err)
    	}
    	priv, ok := key.(crypto.Signer)
    	if !ok {
    		return fmt.Errorf("error reading CA key file %q: key did not implement crypto.Signer", p.caLoader.Name())
    	}
    
    	ca := &authority.CertificateAuthority{
    		RawCert: certPEM,
    		RawKey:  keyPEM,
    
    		Certificate: certs[0],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 16 18:33:22 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/library/format_test.go

    	for keyLHS := range library.ConstantFormats {
    		cases = append(cases, testcase{
    			name:        "lookup and comparison",
    			expr:        fmt.Sprintf(`format.named("%s").hasValue()`, keyLHS),
    			expectValue: types.True,
    		}, testcase{
    			name:        "comparison with lookup succeeds",
    			expr:        fmt.Sprintf(`format.named("%s").value() == format.%s()`, keyLHS, keyLHS),
    			expectValue: types.True,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. docs/debugging/inspect/main.go

    			reader := bufio.NewReader(os.Stdin)
    			fmt.Print("Enter Decryption Key: ")
    
    			text, _ := reader.ReadString('\n')
    			// convert CRLF to LF
    			*keyHex = strings.ReplaceAll(text, "\n", "")
    			*keyHex = strings.TrimSpace(*keyHex)
    		}
    	}
    
    	var inputs []string
    
    	// Parse parameters
    	switch {
    	case *stdin:
    		// Parse 'mc support inspect --json' output
    		input := struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. docs/de/docs/tutorial/response-status-code.md

    * **`300`** und darüber steht für „Redirection“ („Umleitung“).  Responses mit diesen Statuscodes können einen oder keinen Body haben, mit Ausnahme von `304`, „Not Modified“ („Nicht verändert“), welche keinen haben darf.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:32:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. docs/debugging/inspect/decrypt-v1.go

    	"encoding/hex"
    	"fmt"
    	"hash/crc32"
    	"io"
    
    	"github.com/secure-io/sio-go"
    )
    
    func extractInspectV1(keyHex string, r io.Reader, w io.Writer, okMsg string) error {
    	id, err := hex.DecodeString(keyHex[:8])
    	if err != nil {
    		return err
    	}
    	key, err := hex.DecodeString(keyHex[8:])
    	if err != nil {
    		return err
    	}
    	// Verify that CRC is ok.
    	want := binary.LittleEndian.Uint32(id)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 21:22:47 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top