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.

  1. Install the Rupt SDK
yarn add rupt
  1. Include the Rupt Browser SDK on the registration page
import Rupt from "rupt";
  1. 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 ->