hashStringStorageSensitive static method

String hashStringStorageSensitive(
  1. String password
)

Computes a password verification string for given password in sensitive mode.

Implementation

static String hashStringStorageSensitive(String password) =>
    hashStringStorage(password,
        opslimit: Sodium.cryptoPwhashOpslimitSensitive,
        memlimit: Sodium.cryptoPwhashMemlimitSensitive);