I wrote a script that stores digital signatures in binary files and script files. This question only concerns scenarios: currently all these signatures are stored on one line (comment), for example:
print "Hello"
print " World\n"
Perl is an example, but this is done for all scripting languages (Perl, Python, shell scripts, etc.). So now my question is: can I get into the problem if the length of the line containing the signature is too long? How does the interpreter handle this? If so, what is the max. the length of the string i can use?
source
share