Home
last modified time | relevance | path

Searched refs:streebog_endian (Results 1 – 2 of 2) sorted by relevance

/freebsd/crypto/libecc/src/hash/
H A Dstreebog.c50 ctx->streebog_endian = arch_is_big_endian() ? STREEBOG_BIG : STREEBOG_LITTLE; in streebog_init()
149 STREEBOG_PUT_UINT64(ctx->h[0], output, idx, ctx->streebog_endian); idx = (u8)(idx + 8); in streebog_final()
150 STREEBOG_PUT_UINT64(ctx->h[1], output, idx, ctx->streebog_endian); idx = (u8)(idx + 8); in streebog_final()
151 STREEBOG_PUT_UINT64(ctx->h[2], output, idx, ctx->streebog_endian); idx = (u8)(idx + 8); in streebog_final()
152 STREEBOG_PUT_UINT64(ctx->h[3], output, idx, ctx->streebog_endian); idx = (u8)(idx + 8); in streebog_final()
155 STREEBOG_PUT_UINT64(ctx->h[4], output, idx, ctx->streebog_endian); idx = (u8)(idx + 8); in streebog_final()
156 STREEBOG_PUT_UINT64(ctx->h[5], output, idx, ctx->streebog_endian); idx = (u8)(idx + 8); in streebog_final()
157 STREEBOG_PUT_UINT64(ctx->h[6], output, idx, ctx->streebog_endian); idx = (u8)(idx + 8); in streebog_final()
158 STREEBOG_PUT_UINT64(ctx->h[7], output, idx, ctx->streebog_endian); in streebog_final()
/freebsd/crypto/libecc/include/libecc/hash/
H A Dstreebog.h77 streebog_endianness streebog_endian; member