const crypto/ed25519.SeedSize

7 uses

	crypto/ed25519 (current package)
		ed25519.go#L35: 	SeedSize = 32
		ed25519.go#L76: 	return bytes.Clone(priv[:SeedSize])
		ed25519.go#L143: 	seed := make([]byte, SeedSize)
		ed25519.go#L167: 	if l := len(seed); l != SeedSize {
		ed25519.go#L211: 	seed, publicKey := privateKey[:SeedSize], privateKey[SeedSize:]

	crypto/x509
		pkcs8.go#L74: 		if l := len(curvePrivateKey); l != ed25519.SeedSize {