Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for shake_128 (0.23 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)
  3. src/internal/cpu/cpu_s390x.go

    	sha256   function = 2  // SHA-256
    	sha512   function = 3  // SHA-512
    	sha3_224 function = 32 // SHA3-224
    	sha3_256 function = 33 // SHA3-256
    	sha3_384 function = 34 // SHA3-384
    	sha3_512 function = 35 // SHA3-512
    	shake128 function = 36 // SHAKE-128
    	shake256 function = 37 // SHAKE-256
    
    	// KLMD function codes
    	ghash function = 65 // GHASH
    )
    
    const (
    	// KDSA function codes
    	ecdsaVerifyP256    function = 1  // NIST P256
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 17:11:03 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu_s390x.go

    	sha256   function = 2  // SHA-256
    	sha512   function = 3  // SHA-512
    	sha3_224 function = 32 // SHA3-224
    	sha3_256 function = 33 // SHA3-256
    	sha3_384 function = 34 // SHA3-384
    	sha3_512 function = 35 // SHA3-512
    	shake128 function = 36 // SHAKE-128
    	shake256 function = 37 // SHAKE-256
    
    	// KLMD function codes
    	ghash function = 65 // GHASH
    )
    
    // queryResult contains the result of a Query function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 4.9K bytes
    - Viewed (0)
Back to top