Jakob Bohm via openssl-users <openssl-users@xxxxxxxxxxx> writes: > Performance wise, using a newer compiler that implements int64_t etc. via > frequent library calls, while technically correct, is going to run > unnecessarily slow compared to having algorithms that actually use the > optimal integral sizes for the hardware/compiler combination. Why would you think that? If you can rewrite the code to break things up into 32 bit chunks and handle overflows etc, the compiler certainly can do so at least as well, and probably faster than you ever could.