Bitcoin publickey, privkey but no hash160

hi,

i’m a problem this code :

// Get private and public keys
privKey, public := btcec.PrivKeyFromBytes(btcec.S256(), padded[:])

// Get compressed and uncompressed addresses for public key
caddr, _ := btcutil.NewAddressPubKey(public.SerializeCompressed(), &chaincfg.MainNetParams)
uaddr, _ := btcutil.NewAddressPubKey(public.SerializeUncompressed(),&chaincfg.MainNetParams)

// How to get hash160 ??

thanks for help me.

Of what? What are you trying to do?