Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Xor (0.01 sec)

  1. src/cmd/asm/internal/asm/testdata/s390x.s

    	ORW	$65536, R1            // a51a0001
    	ORW	$-2, R1               // c01dfffffffe
    	XOR	R1, R2                // b9820021
    	XOR	R1, R2, R3            // b9e72031
    	XOR	$1, R1                // c01700000001
    	XOR	$131071, R1           // c0170001ffff
    	XOR	$65536, R1            // c01700010000
    	XOR	$-2, R1               // c0a1fffffffeb982001a
    	XORW	R1, R2                // 1721
    	XORW	R1, R2, R3            // b9f72031
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jul 30 19:29:15 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java

            assertEquals(sampleSize, uniqueCounters.size(), "All nonces should have unique values");
    
            // Verify that nonces have good entropy (not predictable)
            // With SecureRandom + counter XOR, they should all be different
            Set<String> uniqueNonces = new HashSet<>();
            for (byte[] nonce : nonces) {
                uniqueNonces.add(bytesToHex(nonce));
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 44.1K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    		Certs:      []madmin.TLSCert{},
    	}
    
    	if globalIsTLS {
    		for _, c := range globalPublicCerts {
    			check := xxh3.Hash(c.RawIssuer)
    			check ^= xxh3.Hash(c.RawSubjectPublicKeyInfo)
    			// We XOR, so order doesn't matter.
    			for _, v := range c.DNSNames {
    				check ^= xxh3.HashString(v)
    			}
    			for _, v := range c.EmailAddresses {
    				check ^= xxh3.HashString(v)
    			}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 99.6K bytes
    - Viewed (0)
Back to top