Earlier quoted context omitted.
MD5 is fine for verifying a download is not corrupted, so that's probably the intended use.
For that purpose, TCP already includes a CRC32. I'd say cryptographic hashes are generally meant for more than corrupted downloads.
GDB 8.1 Released
11–20 of 62 posts
Re: GDB 8.1 Released
#12heh. Has anyone ever used gdb to debug Pascal? :)
Re: GDB 8.1 Released
#13Re: GDB 8.1 Released
#14heh. Has anyone ever used gdb to debug Pascal? :)
Re: GDB 8.1 Released
#15Re: GDB 8.1 Released
#16I'd really like a way for a program to have an API for interacting with GDB: with that it could tell "I'm running under a debugger". There would be a file descriptor which talks to the debugger, if the debugger is present. Output sent to it goes to the debugger and perhaps it could obtain input from the debugger also. Maybe the API could provide some introspection: the program could ask what breakpoints have been set…
Re: GDB 8.1 Released
#17> New shortcuts for TUI Single-Key mode: 'i' for stepi, and 'o' for nexti; TUI really is one of the best features to really get into gdb. visually stepping through the disassembly really makes debugging more appealing, I really wish they dont abandon this aspect of gdb
Re: GDB 8.1 Released
#18Re: GDB 8.1 Released
#19Earlier quoted context omitted.
For that purpose, TCP already includes a CRC32. I'd say cryptographic hashes are generally meant for more than corrupted downloads.
File checksums are typically used when the checksum is still on the master site but the file could be in untrusted mirrors. TCP level stuff is useless in those scenarios.
Re: GDB 8.1 Released
#20I'd really like a way for a program to have an API for interacting with GDB: with that it could tell "I'm running under a debugger". There would be a file descriptor which talks to the debugger, if the debugger is present. Output sent to it goes to the debugger and perhaps it could obtain input from the debugger also. Maybe the API could provide some introspection: the program could ask what breakpoints have been set…