r2f_x3dh_e2e 0.0.1 r2f_x3dh_e2e: ^0.0.1 copied to clipboard
r2f_x3dh_e2e is a Rust to Flutter library that provides end-to-end encryption capabilities using the X3DH (Extended Triple Diffie-Hellman) protocol. It enables secure communication between parties by [...]
import 'dart:async';
import 'package:example/app.dart';
import 'package:flutter/material.dart';
import 'package:r2f_x3dh_e2e/r2f_x3dh_e2e.dart';
Future<void> main() async {
await R2FX3DHE2ESer().init();
runApp(const App());
}