Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for pkRm (0.07 sec)

  1. src/crypto/internal/hpke/hpke_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    			if _, ok := SupportedAEADs[uint16(aeadID)]; !ok {
    				t.Skip("unsupported AEAD")
    			}
    
    			info := mustDecodeHex(t, setup["info"])
    			pubKeyBytes := mustDecodeHex(t, setup["pkRm"])
    			pub, err := ParseHPKEPublicKey(uint16(kemID), pubKeyBytes)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			ephemeralPrivKey := mustDecodeHex(t, setup["skEm"])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. src/cmd/covdata/metamerge.go

    		}
    	}
    	return nil
    }
    
    func (mm *metaMerge) visitPackage(pd *decodemeta.CoverageMetaDataDecoder, pkgIdx uint32, pcombine bool) {
    	p, ok := mm.pkm[pd.PackagePath()]
    	if !ok {
    		p = &pkstate{
    			pkgIdx: uint32(len(mm.pkgs)),
    		}
    		mm.pkgs = append(mm.pkgs, p)
    		mm.pkm[pd.PackagePath()] = p
    		if pcombine {
    			p.pcombinestate = new(pcombinestate)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. src/cmd/covdata/dump.go

    	// instrumented application.
    	mm map[pkfunc]decodecounter.FuncPayload
    
    	// pkm maps package ID to the number of functions in the package
    	// with that ID. It is used to report inconsistencies in counter
    	// data (for example, a counter data entry with pkgid=N funcid=10
    	// where package N only has 3 functions).
    	pkm map[uint32]uint32
    
    	// pkgpaths records all package import paths encountered while
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top