SHA512Hash method
Implementation
Uint8List SHA512Hash(Uint8List password, Uint8List salt) {
final derivator = PBKDF2KeyDerivator(Mac('SHA3-512/HMAC'));
derivator.reset();
derivator.init(Pbkdf2Parameters(salt, 2048, ed448.KEY_LENGTH));
return derivator.process(password);
}