void unpack25519(final List<int> o, final Uint8List n) { for (int i = 0; i < 16; ++i) { o[i] = n[2 * i] + (n[2 * i + 1] << 8); } o[15] &= 0x7fff; }