use crate::ffi::{
crypto_stream_xchacha20, crypto_stream_xchacha20_KEYBYTES, crypto_stream_xchacha20_NONCEBYTES,
crypto_stream_xchacha20_xor, crypto_stream_xchacha20_xor_ic,
};
stream_module!(
crypto_stream_xchacha20,
crypto_stream_xchacha20_xor,
crypto_stream_xchacha20_xor_ic,
crypto_stream_xchacha20_KEYBYTES as usize,
crypto_stream_xchacha20_NONCEBYTES as usize
);