Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Size256 (0.26 sec)

  1. src/crypto/sha512/sha512.go

    }
    
    const (
    	// Size is the size, in bytes, of a SHA-512 checksum.
    	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,
    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/rsa, type PKCS1v15DecryptOptions struct, SessionKeyLen int
    pkg crypto/sha512, const Size224 = 28
    pkg crypto/sha512, const Size224 ideal-int
    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
    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

    	}
    	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 {
    		t.Errorf("New512256.Size = %d; want %d", got, Size256)
    	}
    }
    
    func TestBlockSize(t *testing.T) {
    	c := New()
    	if got := c.BlockSize(); got != BlockSize {
    		t.Errorf("BlockSize = %d; want %d", got, BlockSize)
    	}
    }
    
    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

    	},
    	"crypto/sha512": {
    		{"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)
Back to top