Navigation
Using the fingerprint hash
In the zero trust model, the client produces the hash for the device fingerprint. This hash is used to complete the identification more accurately on the server side.
- Install the Rupt SDK
yarn add rupt
- Include the Rupt Browser SDK on the registration page
import Rupt from "rupt";
- Get a fingerprint
To get a fingerprint hash, call the getHash
function.
import Rupt from "rupt";
const fingerprintHash = await Rupt.getHash();
// send the hash to your server ->