High Throughput Data Transformations for .NET
-
Well, you know network-oriented software transferring large amounts of data needs high data throughput. Most of the overhead the software deals with comes from compression and encryption. I've found solutions like LZO, SNOW 2, and DRAGON (which are some of the very fast compression and encryptions algorithms). Porting the algorithms over to a .NET language would be beyond my expertise (espcially the nightmarish code for LZO). Does anyone know of any fast algorithms written purely in .NET code? I'm looking for something better than Deflate and RC4.
ROFLOLMFAO
-
Well, you know network-oriented software transferring large amounts of data needs high data throughput. Most of the overhead the software deals with comes from compression and encryption. I've found solutions like LZO, SNOW 2, and DRAGON (which are some of the very fast compression and encryptions algorithms). Porting the algorithms over to a .NET language would be beyond my expertise (espcially the nightmarish code for LZO). Does anyone know of any fast algorithms written purely in .NET code? I'm looking for something better than Deflate and RC4.
ROFLOLMFAO
There's a whole cryptography namespace full of encryption stuff built in to the framework, does that help ?
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
There's a whole cryptography namespace full of encryption stuff built in to the framework, does that help ?
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
Yes, I know all the .NET namespaces. There are just some algorithms that aren't implemented.
ROFLOLMFAO