fhel 0.0.13-dev fhel: ^0.0.13-dev copied to clipboard
Native support for Fully Homomorphic Encryption using Microsoft SEAL. Perform basic arithmetic, key management, encryption, and decryption on encrypted data.
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add fhel
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get
):
dependencies:
fhel: ^0.0.13-dev
Alternatively, your editor might support flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:fhel/afhe.dart';
import 'package:fhel/afhe/backend.dart';
import 'package:fhel/afhe/ciphertext.dart';
import 'package:fhel/afhe/codec.dart';
import 'package:fhel/afhe/crypto.dart';
import 'package:fhel/afhe/errors.dart';
import 'package:fhel/afhe/key.dart';
import 'package:fhel/afhe/operation.dart';
import 'package:fhel/afhe/plaintext.dart';
import 'package:fhel/afhe/scheme.dart';
import 'package:fhel/afhe/serial.dart';
import 'package:fhel/ffi.dart';
import 'package:fhel/seal.dart';