From ee978edf8b82cdc483b73c9dde6828a44b9165a7 Mon Sep 17 00:00:00 2001 From: axtlos Date: Fri, 22 Apr 2022 12:57:07 +0200 Subject: [PATCH] fix password issue --- lib/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/main.dart b/lib/main.dart index 4646837..22922a8 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -53,7 +53,7 @@ void main() => runApp( Future setPassword(clearPass, setState) async { final String password = - await Process.run("openssl", ["passwd", "-1", clearPass]) + await Process.run("openssl", ["passwd", "-crypt", clearPass]) .then((ProcessResult result) { return result.stdout; });