hash.Hash.Size (method)
20 uses
hash (current package)
hash.go#L39: Size() int
crypto/hmac
hmac.go#L75: func (h *hmac) Size() int { return h.outer.Size() }
crypto/rsa
pss.go#L34: hLen := hash.Size()
pss.go#L109: hLen := hash.Size()
rsa.go#L416: if len(msg) > k-2*hash.Size()-2 {
rsa.go#L425: seed := em[1 : 1+hash.Size()]
rsa.go#L426: db := em[1+hash.Size():]
rsa.go#L428: copy(db[0:hash.Size()], lHash)
rsa.go#L602: k < hash.Size()*2+2 {
rsa.go#L623: seed := em[1 : hash.Size()+1]
rsa.go#L624: db := em[hash.Size()+1:]
rsa.go#L629: lHash2 := db[0:hash.Size()]
rsa.go#L644: rest := db[hash.Size():]
crypto/tls
cipher_suites.go#L393: func (c *cthWrapper) Size() int { return c.h.Size() }
conn.go#L371: minPayload := explicitNonceLen + roundUp(hc.mac.Size()+1, blockSize)
conn.go#L417: macSize := hc.mac.Size()
conn.go#L872: payloadBytes -= c.out.mac.Size()
conn.go#L882: payloadBytes -= c.out.mac.Size()
vendor/golang.org/x/crypto/hkdf
hkdf.go#L28: salt = make([]byte, hash().Size())
hkdf.go#L85: return &hkdf{expander, expander.Size(), info, 1, nil, nil}
The pages are generated with Golds v0.2.8-preview. (GOOS=darwin GOARCH=arm64)