DartCryptography constructor

DartCryptography({
  1. Random? random,
})

Constructs instance of DartCryptography.

If random is not given, a cryptographically secure random number generator (CSRNG) is used.

Implementation

DartCryptography({
  Random? random,
}) : _random = random;