Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    // the Principles of Operation.
    type code uint64
    
    const (
    	// function codes for KIMD/KLMD
    	sha3_224  code = 32
    	sha3_256       = 33
    	sha3_384       = 34
    	sha3_512       = 35
    	shake_128      = 36
    	shake_256      = 37
    	nopad          = 0x100
    )
    
    // kimd is a wrapper for the 'compute intermediate message digest' instruction.
    // src must be a multiple of the rate for the given function code.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/sha3/shake.go

    }
    
    func newShake256Generic() *state {
    	return &state{rate: rate256, outputLen: 64, dsbyte: dsbyteShake}
    }
    
    // NewCShake128 creates a new instance of cSHAKE128 variable-output-length ShakeHash,
    // a customizable variant of SHAKE128.
    // N is used to define functions based on cSHAKE, it can be empty when plain cSHAKE is
    // desired. S is a customization byte string used for domain separation - two cSHAKE
    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