Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for counterBlock (0.09 sec)

  1. src/crypto/aes/gcm_ppc64x.go

    	counterCryptASM(int(g.cipher.l)/4-1, out, in, counter, &g.cipher.enc[0])
    
    }
    
    // increments the rightmost 32-bits of the count value by 1.
    func gcmInc32(counterBlock *[16]byte) {
    	c := counterBlock[len(counterBlock)-4:]
    	x := byteorder.BeUint32(c) + 1
    	byteorder.BePutUint32(c, x)
    }
    
    // paddedGHASH pads data with zeroes until its length is a multiple of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top