I'm trying to create unique numerical ids based on another unique numerical usernames (to obfuscate) via powershell. For example, username 123423 will be a 5621723. Preferable less than 20 digits
Looked into if CRC16 hash would works, but it's a possibility it will collide. hashids.org looks promising, also https://github.com/archer884/crockford.
any suggestions how you could achieve this, preferable in powershell?
Thanks