crypto_stream_xor static method
Implementation
static int crypto_stream_xor(Uint8List c, int cpos, Uint8List m, int mpos,
int d, Uint8List n, Uint8List k) {
Uint8List s = Uint8List(32);
crypto_core_hsalsa20(s, n, k, _sigma);
Uint8List sn = Uint8List(8);
for (int i = 0; i < 8; i++) sn[i] = n[i + 16];
return _crypto_stream_salsa20_xor(c, cpos, m, mpos, d, sn, s);
}