I am looking for something that acts sort of like a Hashing Algorithm, except I want it to generate an array of predefined length given any arbitrary string. As an example:
Arbitrary Seed: "Entropy"
Desired Length: 100 Reproducible characters from the seed.
Possible Output: EfvrlL9uGKolblPScba2ziPPON5QEm2Q0fsEPMURqu2NSVSXwaqkgCbjm0naeuoaATGWApJ1afBT3HxaWnoNuXCKSBY7EwCpTOga
The generated output does not in any way need to be cryptographically secure and the characters generated do not matter(They can be anything even unprintable characters). My only requirement is that the output be completely reproducible given the same seed. Does anyone have any suggestions on how I could go about achieving this?