Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for sha512_224 (0.19 sec)

  1. src/crypto/sha512/sha512.go

    	switch d.function {
    	case crypto.SHA512_224:
    		return Size224
    	case crypto.SHA512_256:
    		return Size256
    	case crypto.SHA384:
    		return Size384
    	default:
    		return Size
    	}
    }
    
    func (d *digest) BlockSize() int { return BlockSize }
    
    func (d *digest) Write(p []byte) (nn int, err error) {
    	if d.function != crypto.SHA512_224 && d.function != crypto.SHA512_256 {
    		boring.Unreachable()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. src/crypto/crypto.go

    		return "RIPEMD-160"
    	case SHA3_224:
    		return "SHA3-224"
    	case SHA3_256:
    		return "SHA3-256"
    	case SHA3_384:
    		return "SHA3-384"
    	case SHA3_512:
    		return "SHA3-512"
    	case SHA512_224:
    		return "SHA-512/224"
    	case SHA512_256:
    		return "SHA-512/256"
    	case BLAKE2s_256:
    		return "BLAKE2s-256"
    	case BLAKE2b_256:
    		return "BLAKE2b-256"
    	case BLAKE2b_384:
    		return "BLAKE2b-384"
    	case BLAKE2b_512:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. src/hash/marshal_test.go

    	{"sha512_224", sha512.New512_224, fromHex("736861056f1a450ec15af20572d0d1ee6518104d7cbbbe79a038557af5450ed7dbd420b53b7335209e951b4d9aff401f90549b9604fa3d823fbb8581c73582a88aa84022808182838485868788898a8b8c8d8e8f909192939495969798999a9b9c9d9e9fa0a1a2a3a4a5a6...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 07:45:46 UTC 2017
    - 5.4K bytes
    - Viewed (0)
  4. api/go1.5.txt

    pkg bytes, func LastIndexByte([]uint8, uint8) int
    pkg bytes, method (*Buffer) Cap() int
    pkg bytes, method (*Reader) Size() int64
    pkg crypto, const SHA512_224 = 14
    pkg crypto, const SHA512_224 Hash
    pkg crypto, const SHA512_256 = 15
    pkg crypto, const SHA512_256 Hash
    pkg crypto, type Decrypter interface { Decrypt, Public }
    pkg crypto, type Decrypter interface, Decrypt(io.Reader, []uint8, DecrypterOpts) ([]uint8, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"SHA256", Const, 0},
    		{"SHA384", Const, 0},
    		{"SHA3_224", Const, 4},
    		{"SHA3_256", Const, 4},
    		{"SHA3_384", Const, 4},
    		{"SHA3_512", Const, 4},
    		{"SHA512", Const, 0},
    		{"SHA512_224", Const, 5},
    		{"SHA512_256", Const, 5},
    		{"Signer", Type, 4},
    		{"SignerOpts", Type, 4},
    	},
    	"crypto/aes": {
    		{"(KeySizeError).Error", Method, 0},
    		{"BlockSize", Const, 0},
    		{"KeySizeError", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  6. src/crypto/sha512/sha512_test.go

    	tests := []struct {
    		name        string
    		oneShotHash func(in []byte) []byte
    		digest      hash.Hash
    		golden      []sha512Test
    	}{
    		{
    			"SHA512/224",
    			func(in []byte) []byte { a := Sum512_224(in); return a[:] },
    			New512_224(),
    			golden224,
    		},
    		{
    			"SHA512/256",
    			func(in []byte) []byte { a := Sum512_256(in); return a[:] },
    			New512_256(),
    			golden256,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
Back to top