crypto_pwhash_argon2id_str_needs_rehash method

int crypto_pwhash_argon2id_str_needs_rehash(
  1. Pointer<Char> str,
  2. int opslimit,
  3. int memlimit
)

Implementation

int crypto_pwhash_argon2id_str_needs_rehash(
  ffi.Pointer<ffi.Char> str,
  int opslimit,
  int memlimit,
) {
  return _crypto_pwhash_argon2id_str_needs_rehash(
    str,
    opslimit,
    memlimit,
  );
}