Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reed-Solomon algorithm

I have an application in C# with a SQL Server database. I receive some files in notepad and one column is encrypted with the Reed-Solomon algorithm.

Can somebody tell me how can I can use the Reed-Solomon algorithm to decode/correct errors in some strings in SQL Server or C#?

Thanks!

like image 665
user1577242 Avatar asked Feb 21 '26 19:02

user1577242


2 Answers

For those looking to implement Reed-solomon error correction themselves, this is the best resource I've found yet that explains it:

"BBC R&D White paper WHP-031 - Reed-solomon error correction" by C.K.P Clarke:

http://downloads.bbc.co.uk/rd/pubs/whp/whp-pdf-files/WHP031.pdf

like image 132
antiduh Avatar answered Feb 24 '26 12:02

antiduh


Try using ReedSolomonDecoder from ZXing project.

Incidentally, Reed-Solomon is a fault-tolerant encoding, not an encryption algorithm.

like image 29
Stefano Sanfilippo Avatar answered Feb 24 '26 12:02

Stefano Sanfilippo