salt static method

Future<String> salt()

Generate a 16 byte salt with 6 rounds of cost in Modular Crypt Format.

Implementation

static Future<String> salt() async =>
    await (_channel.invokeMethod('salt', {'rounds': 6}));