neq25519 function

int neq25519(
  1. List<int> a,
  2. List<int> b
)

Implementation

int neq25519(final List<int> a, final List<int> b) {
  final c = Uint8List(32), d = Uint8List(32);
  pack25519(c, a);
  pack25519(d, b);
  return TweetNaCl.crypto_verify_32(c, d);
}