TRNG QUERY
Hey people. Recently, I am working on Quantum Random Number Generators (QRNG). Now, we know QRNG output is Truly Random (that's what I have heard).
So can the output of a QRNG/TRNG be used to directly seed a CSPRNG (like AES-GCM or ChaCha20)??. I mean practically, there is no way to replicate the original key derived from the QRNG. So can output of a QRNG be used as raw seed to prime CSPRNG's. Or should I first hash/whiten the QRNG output before seeding (but wouldn't it be an overkill??).
(This is assuming the QRNG has no hardware bias). What say??.