On Thu, Mar 10, 2022 at 06:36:47PM +0000, Eric Biggers wrote: > I think the lib functions should still use native endianness, like what crc32 > does. Gotcha, then it should simply be this patch: --- diff --git a/crypto/testmgr.h b/crypto/testmgr.h index f1a22794c404..f9e5f601c657 100644 --- a/crypto/testmgr.h +++ b/crypto/testmgr.h @@ -3686,11 +3686,11 @@ static const struct hash_testvec crc64_rocksoft_tv_template[] = { { .plaintext = zeroes, .psize = 4096, - .digest = (u8 *)(u64[]){ 0x6482d367eb22b64eull }, + .digest = "\x4e\xb6\x22\xeb\x67\xd3\x82\x64", }, { .plaintext = ones, .psize = 4096, - .digest = (u8 *)(u64[]){ 0xc0ddba7302eca3acull }, + .digest = "\xac\xa3\xec\x02\x73\xba\xdd\xc0", } }; --