secure_enclave 0.0.1 copy "secure_enclave: ^0.0.1" to clipboard
secure_enclave: ^0.0.1 copied to clipboard

outdated

Apple Secure Enclave implementaton for Flutter

secure_enclave #

Apple Secure Enclave implementaton for Flutter

How to Use #

Encrypt:

Uint8List encrypted = Uint8List(0);
String tag = "SOME-TAG";
String message = "Hello World";
SecureEnclavePlugin.encrypt(tag, message).then((value) => encrypted = value ?? Uint8List(0));

decrypt:

Uint8List encrypted = ...; // some Unit8
String tag = "SOME-TAG";
String clearText = "";
SecureEnclavePlugin.decrypt(tag, encrypted).then((value) => clearText = value ?? "");
10
likes
0
points
156
downloads

Publisher

verified publisheranggaaryas.my.id

Weekly Downloads

Apple Secure Enclave implementaton for Flutter

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on secure_enclave