Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for new384Generic (0.2 sec)

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

    //go:build !gc || purego || !s390x
    
    package sha3
    
    func new224() *state {
    	return new224Generic()
    }
    
    func new256() *state {
    	return new256Generic()
    }
    
    func new384() *state {
    	return new384Generic()
    }
    
    func new512() *state {
    	return new512Generic()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 409 bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/sha3/hashes.go

    }
    
    func new224Generic() *state {
    	return &state{rate: 144, outputLen: 28, dsbyte: 0x06}
    }
    
    func new256Generic() *state {
    	return &state{rate: 136, outputLen: 32, dsbyte: 0x06}
    }
    
    func new384Generic() *state {
    	return &state{rate: 104, outputLen: 48, dsbyte: 0x06}
    }
    
    func new512Generic() *state {
    	return &state{rate: 72, outputLen: 64, dsbyte: 0x06}
    }
    
    // NewLegacyKeccak256 creates a new Keccak-256 hash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.go

    // new384 returns an assembly implementation of SHA3-384 if available,
    // otherwise it returns a generic implementation.
    func new384() hash.Hash {
    	if cpu.S390X.HasSHA3 {
    		return newAsmState(sha3_384)
    	}
    	return new384Generic()
    }
    
    // new512 returns an assembly implementation of SHA3-512 if available,
    // otherwise it returns a generic implementation.
    func new512() hash.Hash {
    	if cpu.S390X.HasSHA3 {
    		return newAsmState(sha3_512)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top