Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for bePutUint64 (0.17 sec)

  1. src/crypto/cipher/gcm.go

    		copy(counter[:], nonce)
    		counter[gcmBlockSize-1] = 1
    	} else {
    		var y gcmFieldElement
    		g.update(&y, nonce)
    		y.high ^= uint64(len(nonce)) * 8
    		g.mul(&y)
    		byteorder.BePutUint64(counter[:8], y.low)
    		byteorder.BePutUint64(counter[8:], y.high)
    	}
    }
    
    // auth calculates GHASH(ciphertext, additionalData), masks the result with
    // tagMask and writes the result to out.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. src/net/netip/netip.go

    // IPv6 addresses with zones are returned without their zone (use the
    // [Addr.Zone] method to get it).
    // The ip zero value returns all zeroes.
    func (ip Addr) As16() (a16 [16]byte) {
    	byteorder.BePutUint64(a16[:8], ip.addr.hi)
    	byteorder.BePutUint64(a16[8:], ip.addr.lo)
    	return a16
    }
    
    // As4 returns an IPv4 or IPv4-in-IPv6 address in its 4-byte representation.
    // If ip is the zero [Addr] or an IPv6 address, As4 panics.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_s390x.go

    }
    
    // gcmLengths writes len0 || len1 as big-endian values to a 16-byte array.
    func gcmLengths(len0, len1 uint64) [16]byte {
    	v := [16]byte{}
    	byteorder.BePutUint64(v[0:], len0)
    	byteorder.BePutUint64(v[8:], len1)
    	return v
    }
    
    // gcmHashKey represents the 16-byte hash key required by the GHASH algorithm.
    type gcmHashKey [16]byte
    
    type gcmAsm struct {
    	block     *aesCipherAsm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top