const crypto/md5.BlockSize
13 uses
crypto/md5 (current package)
md5.go#L29: const BlockSize = 64
md5.go#L34: const maxAsmSize = BlockSize * maxAsmIters // 64KiB
md5.go#L46: x [BlockSize]byte
md5.go#L62: marshaledSize = len(magic) + 4*4 + BlockSize + 8
md5.go#L95: d.nx = int(d.len % BlockSize)
md5.go#L124: func (d *digest) BlockSize() int { return BlockSize }
md5.go#L138: if d.nx == BlockSize {
md5.go#L148: if len(p) >= BlockSize {
md5.go#L149: n := len(p) &^ (BlockSize - 1)
md5block.go#L18: for i := 0; i <= len(p)-BlockSize; i += BlockSize {
md5block.go#L21: q = q[:BlockSize:BlockSize]
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |