Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for keccakF1600 (0.08 sec)

  1. src/vendor/golang.org/x/crypto/sha3/keccakf_amd64.go

    // license that can be found in the LICENSE file.
    
    //go:build amd64 && !purego && gc
    
    package sha3
    
    // This function is implemented in keccakf_amd64.s.
    
    //go:noescape
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 309 bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/sha3/sha3.go

    		// If we're absorbing, we need to xor the input into the state
    		// before applying the permutation.
    		xorIn(d, d.storage[:d.rate])
    		d.n = 0
    		keccakF1600(&d.a)
    	case spongeSqueezing:
    		// If we're squeezing, we need to apply the permutation before
    		// copying more output.
    		keccakF1600(&d.a)
    		d.i = 0
    		copyOut(d, d.storage[:d.rate])
    	}
    }
    
    // pads appends the domain separation bits in dsbyte, applies
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top