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); }