mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-05 11:39:30 +01:00
10 lines
288 B
Dart
10 lines
288 B
Dart
//@dart=2.12
|
|
|
|
import 'dart:math';
|
|
|
|
const _chars = 'AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz1234567890';
|
|
Random _rnd = Random();
|
|
|
|
String getClientSecret(int length) => String.fromCharCodes(Iterable.generate(
|
|
length, (_) => _chars.codeUnitAt(_rnd.nextInt(_chars.length))));
|