math/big.Int.FillBytes (method)

14 uses

	math/big (current package)
		int.go#L461: func (x *Int) FillBytes(buf []byte) []byte {

	crypto/elliptic
		elliptic.go#L369: 	x.FillBytes(ret[1 : 1+byteLen])
		elliptic.go#L370: 	y.FillBytes(ret[1+byteLen : 1+2*byteLen])
		elliptic.go#L382: 	x.FillBytes(compressed[1:])

	crypto/rsa
		pkcs1v15.go#L64: 	return c.FillBytes(em), nil
		pkcs1v15.go#L152: 	em = m.FillBytes(make([]byte, k))
		pkcs1v15.go#L258: 	return c.FillBytes(em), nil
		pkcs1v15.go#L287: 	em := m.FillBytes(make([]byte, k))
		pss.go#L222: 	return c.FillBytes(s), nil
		pss.go#L301: 	em := m.FillBytes(make([]byte, emLen))
		rsa.go#L445: 	return c.FillBytes(out), nil
		rsa.go#L619: 	em := m.FillBytes(make([]byte, k))

	crypto/tls
		key_schedule.go#L177: 	return xShared.FillBytes(sharedKey)

	crypto/x509
		sec1.go#L58: 		PrivateKey:    key.D.FillBytes(privateKey),