The user explores various random number generation APIs on Apple platforms, including rand(3), arc4random(3), getentropy(2), CCRandomGenerateBytes, and SecRandomCopyBytes, to determine the best approach for different use cases. The user concludes that for non-security-critical use cases, a custom RNG seeded with getentropy(2) is sufficient, while for security-critical workloads, ...