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

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.

example/lib/main.dart

import 'package:ipin/ipin.dart';

void main() {
  final clearIpin = "0000";
  final uuid = "5b3d573e-44a9-4ae9-a112-0a4ad4b70db1";
  final pubKey =
      "MFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBANx4gKYSMv3CrWWsxdPfxDxFvl+Is/0kc1dvMI1yNWDXI3AgdI4127KMUOv7gmwZ6SnRsHX/KAM0IPRe0+Sa0vMCAwEAAQ==";
  var ipin = Ipin(clearIpin: clearIpin, uuid: uuid, pubKey: pubKey).encrypt();
  print("ipin block is: ");
  print(ipin);
}
3
likes
30
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

MIT (LICENSE)

Dependencies

crypton, flutter

More

Packages that depend on ipin