=begin I'll attach a proposed fix: * make ((|context->buffer|)) an array of the type being expected by (({SHAXXX_Transform})) (rather than a byte array), so our compiler will align it, if necessary * remove now unneeded casts when pa...slink (Nils Goroll)
=begin This indeed is an alignment issue, SHA256_Update calls SHA256_Transform with possibly unaligned data, but the latter needs its data argument be aligned on platforms which do not support unaligned word access. The same bug exists f...slink (Nils Goroll)