ipin 0.0.4 copy "ipin: ^0.0.4" to clipboard
ipin: ^0.0.4 copied to clipboard

outdated

Ipin encryption for EBS / noebs. ipin uses a very simple interface to calculate encrypted ipin for both EBS / noebs use cases. ipin is battle tested and used in production by different companies.

ipin #

Library for IPIN encryption (for EBS and noebs). Lightweight, only uses dart, built on top of Crypton library.

How to use it #

$ # update pubspec.yaml with the library
import 'package:ipin/ipin.dart';

final key =
    "MFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBANx4gKYSMv3CrWWsxdPfxDxFvl+Is/0kc1dvMI1yNWDXI3AgdI4127KMUOv7gmwZ6SnRsHX/KAM0IPRe0+Sa0vMCAwEAAQ==";
// final id = Uuid().v4();
final id = Uuid().v4();
final ipin = await Ipin(clearIpin: "0000", uuid: id, pubKey: key).encrypt();

// ipin is the new encrypted ipin block. NOTE you will to use `id` in UUID request field.

pubKey is the public key you get via our API (docs.noebs.dev) uuid is uuid. NOTE, the same UUID we use for encryption is the one we send in our subsequent API calls. clearIpin: is the clear ipin entered by the user

Visit [https://docs.noebs.dev](for more information).

3
likes
0
pub points
0%
popularity

Publisher

verified publishernoebs.dev

Ipin encryption for EBS / noebs. ipin uses a very simple interface to calculate encrypted ipin for both EBS / noebs use cases. ipin is battle tested and used in production by different companies.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

crypton, flutter

More

Packages that depend on ipin