I would like to have a hashing algorithm, that can generate a hash string but with alphanumeric characters but under a specified limit.
For example, If I provide it some text, it should generate a string that can be used as a password for websites. So at least 8 characters long, must contain at least a capital letter and at least a number.
Is there any hash algorithm like this? or would I have to create a custom implementation? or is it not possible at all?
I'd like to do this in javascript