Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for kmctrQuery (0.11 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu_s390x.s

    	MOVD $0, R0         // set function code to 0 (KMC-Query)
    	MOVD $ret+0(FP), R1 // address of 16-byte return value
    	WORD $0xB92F0024    // cipher message with chaining (KMC)
    	RET
    
    // func kmctrQuery() queryResult
    TEXT ·kmctrQuery(SB), NOSPLIT|NOFRAME, $0-16
    	MOVD $0, R0         // set function code to 0 (KMCTR-Query)
    	MOVD $ret+0(FP), R1 // address of 16-byte return value
    	WORD $0xB92D4024    // cipher message with counter (KMCTR)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/internal/cpu/cpu_s390x.s

    	MOVD $0, R0         // set function code to 0 (KMC-Query)
    	MOVD $ret+0(FP), R1 // address of 16-byte return value
    	KMC  R2, R4         // cipher message with chaining (KMC)
    	RET
    
    // func kmctrQuery() queryResult
    TEXT ·kmctrQuery(SB), NOSPLIT|NOFRAME, $0-16
    	MOVD $0, R0         // set function code to 0 (KMCTR-Query)
    	MOVD $ret+0(FP), R1 // address of 16-byte return value
    	KMCTR R2, R4, R4    // cipher message with counter (KMCTR)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu_gc_s390x.go

    // They are likely to be expensive to call so the results should be cached.
    func stfle() facilityList
    func kmQuery() queryResult
    func kmcQuery() queryResult
    func kmctrQuery() queryResult
    func kmaQuery() queryResult
    func kimdQuery() queryResult
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 674 bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu_gccgo_s390x.go

    func stfle() facilityList     { panic("not implemented for gccgo") }
    func kmQuery() queryResult    { panic("not implemented for gccgo") }
    func kmcQuery() queryResult   { panic("not implemented for gccgo") }
    func kmctrQuery() queryResult { panic("not implemented for gccgo") }
    func kmaQuery() queryResult   { panic("not implemented for gccgo") }
    func kimdQuery() queryResult  { panic("not implemented for gccgo") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. src/internal/cpu/cpu_s390x.go

    // They are likely to be expensive to call so the results should be cached.
    func stfle() facilityList
    func kmQuery() queryResult
    func kmcQuery() queryResult
    func kmctrQuery() queryResult
    func kmaQuery() queryResult
    func kimdQuery() queryResult
    func klmdQuery() queryResult
    func kdsaQuery() queryResult
    
    func doinit() {
    	options = []option{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 17:11:03 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/cpu_s390x.go

    		km, kmc := kmQuery(), kmcQuery()
    		S390X.HasAES = km.Has(aes...)
    		S390X.HasAESCBC = kmc.Has(aes...)
    		if S390X.HasSTFLE {
    			facilities := stfle()
    			if facilities.Has(msa4) {
    				kmctr := kmctrQuery()
    				S390X.HasAESCTR = kmctr.Has(aes...)
    			}
    			if facilities.Has(msa8) {
    				kma := kmaQuery()
    				S390X.HasAESGCM = kma.Has(aes...)
    			}
    		}
    
    		// compute message digest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 4.9K bytes
    - Viewed (0)
Back to top