ben-strasser / fast-cpp-csv-parser

fast-cpp-csv-parser
BSD 3-Clause "New" or "Revised" License
2.11k stars 440 forks source link

encrypted csv files #52

Closed grawlee closed 6 years ago

grawlee commented 6 years ago

How would you recommend reading/writing encrypted CSV files with this parser? Assume the user has a encrypt/decrypt functions. string encrypt(string); and string decrypt(string) I could extend your code.. but also any guidance would be great

ben-strasser commented 6 years ago

I'd derive a class from ByteSourceBase that does the decryption.