Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Size384 (0.26 sec)

  1. src/crypto/sha512/sha512.go

    	Size = 64
    
    	// Size224 is the size, in bytes, of a SHA-512/224 checksum.
    	Size224 = 28
    
    	// Size256 is the size, in bytes, of a SHA-512/256 checksum.
    	Size256 = 32
    
    	// Size384 is the size, in bytes, of a SHA-384 checksum.
    	Size384 = 48
    
    	// BlockSize is the block size, in bytes, of the SHA-512/224,
    	// SHA-512/256, SHA-384 and SHA-512 hash functions.
    	BlockSize = 128
    )
    
    const (
    	chunk     = 128
    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/hmac/hmac_test.go

    			0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f,
    		},
    		[]byte("Sample message for keylen=blocklen"),
    		"63c5daa5e651847ca897c95814ab830bededc7d25e83eef9195cd45857a37f448947858f5af50cc2b1b730ddf29671a9",
    		sha512.Size384,
    		sha512.BlockSize,
    	},
    	{
    		sha512.New384,
    		[]byte{
    			0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
    			0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 18 18:38:14 UTC 2020
    - 21.8K bytes
    - Viewed (0)
  3. src/crypto/sha512/sha512_test.go

    }
    
    func TestSize(t *testing.T) {
    	c := New()
    	if got := c.Size(); got != Size {
    		t.Errorf("Size = %d; want %d", got, Size)
    	}
    	c = New384()
    	if got := c.Size(); got != Size384 {
    		t.Errorf("New384.Size = %d; want %d", got, Size384)
    	}
    	c = New512_224()
    	if got := c.Size(); got != Size224 {
    		t.Errorf("New512224.Size = %d; want %d", got, Size224)
    	}
    	c = New512_256()
    	if got := c.Size(); got != Size256 {
    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

    		{"BlockSize", Const, 0},
    		{"New", Func, 0},
    		{"New384", Func, 0},
    		{"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},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg crypto/sha256, func New() hash.Hash
    pkg crypto/sha256, func New224() hash.Hash
    pkg crypto/sha512, const BlockSize ideal-int
    pkg crypto/sha512, const Size ideal-int
    pkg crypto/sha512, const Size384 ideal-int
    pkg crypto/sha512, func New() hash.Hash
    pkg crypto/sha512, func New384() hash.Hash
    pkg crypto/subtle, func ConstantTimeByteEq(uint8, uint8) int
    pkg crypto/subtle, func ConstantTimeCompare([]uint8, []uint8) int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg crypto/sha256, const BlockSize = 64
    pkg crypto/sha256, const Size = 32
    pkg crypto/sha256, const Size224 = 28
    pkg crypto/sha512, const BlockSize = 128
    pkg crypto/sha512, const Size = 64
    pkg crypto/sha512, const Size384 = 48
    pkg crypto/tls, const NoClientCert = 0
    pkg crypto/tls, const RequestClientCert = 1
    pkg crypto/tls, const RequireAndVerifyClientCert = 4
    pkg crypto/tls, const RequireAnyClientCert = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top