newSecretKey method

  1. @override
Future<SecretKey> newSecretKey()
override

Generates a new SecretKey with the correct length (secretKeyLength).

Uses a cryptographically strong random number generator.

Implementation

@override
Future<SecretKey> newSecretKey() {
  return fallback.newSecretKey();
}