I am trying to store a long list of hashes (> 1000) in a DataSection like so:
Code: Select all
DataSection
SecretHashes:
Data.s "e92210bf29196ffd45c9f22cfbc0c999c29b8363",
"6673d115a1dafaea51892d9d7328cd09d9919a6c",
"34b24a46f1fc13257c7f4c7e098c294a7418b7c3",
"f18d50bfd00aad4dc83bd8afa179b7b77a8972b5",
...
"Too many continuation lines for a single line."
Due to the nature of the hashes, I cannot store them in an external file, a database or online, so I believe it has to be in a .pb file. Any suggestions how I might accomplish that? Thanks in advance, Felix