const crypto/ed25519.SeedSize

7 uses

	crypto/ed25519 (current package)
		ed25519.go#L34: 	SeedSize = 32
		ed25519.go#L75: 	seed := make([]byte, SeedSize)
		ed25519.go#L100: 	seed := make([]byte, SeedSize)
		ed25519.go#L124: 	if l := len(seed); l != SeedSize {
		ed25519.go#L152: 	seed, publicKey := privateKey[:SeedSize], privateKey[SeedSize:]

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