Flutter ffi library for argon2 implementation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
1.6 KiB

5 years ago
import 'dart:convert';
import 'dart:math';
5 years ago
import 'package:argon2_ffi_base/argon2_ffi_base.dart';
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
5 years ago
final _argon2ffi = Argon2FfiFlutter();
final random = Random();
String result;
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Column(
children: <Widget>[
Text('Result: $result\n'),
RaisedButton(
child: Text('Do it'),
onPressed: () {
int x = random.nextInt(20);
int y = random.nextInt(20);
setState(() {
5 years ago
result = '$x + $y = ${_argon2ffi.addIt(x, y)} --- ';
});
},
),
5 years ago
RaisedButton(
child: Text('hash stuff'),
onPressed: () {
final args = Argon2Arguments(
utf8.encode('abc'),
utf8.encode('abc'),
1024,
2,
32,
2,
0,
1,
);
final hash = _argon2ffi.argon2(args);
setState(() {
result = 'argon2 hash: ${base64.encode(hash)}';
});
},
),
],
),
),
);
}
}