Home
last modified time | relevance | path

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

/freebsd/crypto/libecc/src/hash/
H A Dstreebog.c149 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.h55 #define STREEBOG_PUT_UINT64(n,b,i,endian) \ macro