Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 88 for aesctr (0.14 sec)

  1. src/crypto/ecdsa/ecdsa.go

    	}
    
    	// Create a CSPRNG that xors a stream of zeros with
    	// the output of the AES-CTR instance.
    	const aesIV = "IV for ECDSA CTR"
    	return &cipher.StreamReader{
    		R: zeroReader,
    		S: cipher.NewCTR(block, []byte(aesIV)),
    	}, nil
    }
    
    type zr struct{}
    
    var zeroReader = zr{}
    
    // Read replaces the contents of dst with zeros. It is safe for concurrent use.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    						APIVersion: "v1",
    						Name:       "testprovider",
    						Endpoint:   "unix:///tmp/testprovider.sock",
    						CacheSize:  &cacheSize,
    						Timeout:    &metav1.Duration{Duration: 3 * time.Second},
    					}},
    					{AESCBC: &apiserver.AESConfiguration{
    						Keys: []apiserver.Key{
    							{Name: "key1", Secret: "c2VjcmV0IGlzIHNlY3VyZQ=="},
    							{Name: "key2", Secret: "dGhpcyBpcyBwYXNzd29yZA=="},
    						},
    					}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  3. src/html/entity.go

    		"Aogon;":                           '\U00000104',
    		"Aopf;":                            '\U0001D538',
    		"ApplyFunction;":                   '\U00002061',
    		"Aring;":                           '\U000000C5',
    		"Ascr;":                            '\U0001D49C',
    		"Assign;":                          '\U00002254',
    		"Atilde;":                          '\U000000C3',
    		"Auml;":                            '\U000000C4',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  4. go.sum

    github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw=
    github.com/jcmturner/aescts/v2 v2.0.0 h1:9YKLH6ey7H4eDBXW8khjYslgyqG2xZikXP0EQFKrle8=
    github.com/jcmturner/aescts/v2 v2.0.0/go.mod h1:AiaICIRyfYg35RUkr8yESTqvSy7csK90qZ5xfvvsoNs=
    github.com/jcmturner/dnsutils/v2 v2.0.0 h1:lltnkeZGL0wILNvrNiVCR6Ro5PGU/SeBvVO/8c/iPbo=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/converter_test.go

    	src := map[string]interface{}{
    		"a": nil,
    		"b": int64(123),
    		"c": map[string]interface{}{
    			"a": "b",
    		},
    		"d": []interface{}{
    			int64(1), int64(2),
    		},
    		"e": "estr",
    		"f": true,
    		"g": encodingjson.Number("123"),
    	}
    	deepCopy := runtime.DeepCopyJSON(src)
    	assert.Equal(t, src, deepCopy)
    }
    
    func TestFloatIntConversion(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/obj.go

    	}
    }
    
    func wantReg(ctxt *obj.Link, ins *instruction, pos string, descr string, r, min, max uint32) {
    	if r < min || r > max {
    		var suffix string
    		if r != obj.REG_NONE {
    			suffix = fmt.Sprintf(" but got non-%s register %s", descr, RegName(int(r)))
    		}
    		ctxt.Diag("%v: expected %s register in %s position%s", ins, descr, pos, suffix)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  7. src/crypto/aes/gcm_arm64.s

    TEXT ·gcmAesEnc(SB),NOSPLIT,$0
    #define pTbl R0
    #define dstPtr R1
    #define ctrPtr R2
    #define srcPtr R3
    #define ks R4
    #define tPtr R5
    #define srcPtrLen R6
    #define aluCTR R7
    #define aluTMP R8
    #define aluK R9
    #define NR R10
    #define H0 R11
    #define H1 R12
    #define curK R13
    #define pTblSave R14
    
    #define aesrndx8(K) \
    	AESE	K.B16, B0.B16    \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	InUnknownProtos uint32
    	OutOctets       uint32
    	OutUcastPkts    uint32
    	OutNUcastPkts   uint32
    	OutDiscards     uint32
    	OutErrors       uint32
    	OutQLen         uint32
    	DescrLen        uint32
    	Descr           [MAXLEN_IFDESCR]byte
    }
    
    type CertInfo struct {
    	Version              uint32
    	SerialNumber         CryptIntegerBlob
    	SignatureAlgorithm   CryptAlgorithmIdentifier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/asm7.go

    	{ACLREX, C_NONE, C_NONE, C_NONE, C_NONE, C_NONE, 38, 4, 0, 0, 0},
    	{ABFM, C_VCON, C_ZREG, C_VCON, C_ZREG, C_NONE, 42, 4, 0, 0, 0},
    	{ABFI, C_VCON, C_ZREG, C_VCON, C_ZREG, C_NONE, 43, 4, 0, 0, 0},
    	{AEXTR, C_VCON, C_ZREG, C_ZREG, C_ZREG, C_NONE, 44, 4, 0, 0, 0},
    	{ASXTB, C_ZREG, C_NONE, C_NONE, C_ZREG, C_NONE, 45, 4, 0, 0, 0},
    	{ACLS, C_ZREG, C_NONE, C_NONE, C_ZREG, C_NONE, 46, 4, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/s390x/asmz.go

    			opset(AWFMADB, r)
    			opset(AVFMSDB, r)
    			opset(AWFMSDB, r)
    			opset(AVPERM, r)
    		case AKM:
    			opset(AKMC, r)
    			opset(AKLMD, r)
    			opset(AKIMD, r)
    		case AKMA:
    			opset(AKMCTR, r)
    		}
    	}
    }
    
    const (
    	op_A       uint32 = 0x5A00 // FORMAT_RX1        ADD (32)
    	op_AD      uint32 = 0x6A00 // FORMAT_RX1        ADD NORMALIZED (long HFP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
Back to top