My nodejs application is using crypto library to encrypt stream below
var gfsStream = gfs.createWriteStream(options)
var rs = new BufferReadable()
var encrypt = crypto.createCipher('aes-256-ctr', 'my password')
rs.pipe(encrypt).pipe(gfsStream)
How to decrypt in c# code? Thank you.