Hello all, I'm looking for some help on this issue. I have a blazor wasm app and currently we can register devices using a thumbprint made in the browser. If there is a matching thumbprint, then some features are unlocked.
The goal is to make this device registration browser agnostic. I need to be able to register a PC, regardless of browser / user. The blazor app should be able to detect if the PC is a registered device. We cannot access hardware info from the browser directly so I am in need for a elegant solution for this.
Also, it's not possible to do this based on a file somewhere on the drive, or a certificate (since we don't use kestrel)
Any suggestion?