darkbio_crypto 0.3.0 copy "darkbio_crypto: ^0.3.0" to clipboard
darkbio_crypto: ^0.3.0 copied to clipboard

Post-quantum cryptography in Flutter, backed by Rust FFI

example/lib/main.dart

import 'package:darkbio_crypto/darkbio_crypto.dart' as darkbio_crypto;
import 'package:flutter/material.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  await darkbio_crypto.init();
  runApp(const MaterialApp(home: Scaffold()));
}