Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Sum512_224 (0.11 sec)

  1. src/crypto/sha512/sha512.go

    	}
    	d := digest{function: crypto.SHA384}
    	d.Reset()
    	d.Write(data)
    	sum := d.checkSum()
    	ap := (*[Size384]byte)(sum[:])
    	return *ap
    }
    
    // Sum512_224 returns the Sum512/224 checksum of the data.
    func Sum512_224(data []byte) [Size224]byte {
    	d := digest{function: crypto.SHA512_224}
    	d.Reset()
    	d.Write(data)
    	sum := d.checkSum()
    	ap := (*[Size224]byte)(sum[:])
    	return *ap
    }
    
    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. api/go1.5.txt

    pkg crypto/sha512, const Size256 = 32
    pkg crypto/sha512, const Size256 ideal-int
    pkg crypto/sha512, func New512_224() hash.Hash
    pkg crypto/sha512, func New512_256() hash.Hash
    pkg crypto/sha512, func Sum512_224([]uint8) [28]uint8
    pkg crypto/sha512, func Sum512_256([]uint8) [32]uint8
    pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 = 49196
    pkg crypto/tls, const TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"New512_224", Func, 5},
    		{"New512_256", Func, 5},
    		{"Size", Const, 0},
    		{"Size224", Const, 5},
    		{"Size256", Const, 5},
    		{"Size384", Const, 0},
    		{"Sum384", Func, 2},
    		{"Sum512", Func, 2},
    		{"Sum512_224", Func, 5},
    		{"Sum512_256", Func, 5},
    	},
    	"crypto/subtle": {
    		{"ConstantTimeByteEq", Func, 0},
    		{"ConstantTimeCompare", Func, 0},
    		{"ConstantTimeCopy", Func, 0},
    		{"ConstantTimeEq", Func, 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)
Back to top