Home
last modified time | relevance | path

Searched refs:PUT_UINT32_LE (Results 1 – 13 of 13) sorted by relevance

/freebsd/crypto/libecc/src/hash/
H A Dripemd160.c30 #ifndef PUT_UINT32_LE
31 #define PUT_UINT32_LE(n, b, i) \ macro
293 PUT_UINT32_LE(ctx->ripemd160_state[0], output, 0); in ripemd160_final()
294 PUT_UINT32_LE(ctx->ripemd160_state[1], output, 4); in ripemd160_final()
295 PUT_UINT32_LE(ctx->ripemd160_state[2], output, 8); in ripemd160_final()
296 PUT_UINT32_LE(ctx->ripemd160_state[3], output, 12); in ripemd160_final()
297 PUT_UINT32_LE(ctx->ripemd160_state[4], output, 16); in ripemd160_final()
H A Dbelt-hash.c150 PUT_UINT32_LE(b, out, 0); in belt_encrypt()
151 PUT_UINT32_LE(d, out, 4); in belt_encrypt()
152 PUT_UINT32_LE(a, out, 8); in belt_encrypt()
153 PUT_UINT32_LE(c, out, 12); in belt_encrypt()
192 PUT_UINT32_LE(c, out, 0); in belt_decrypt()
193 PUT_UINT32_LE(a, out, 4); in belt_decrypt()
194 PUT_UINT32_LE(d, out, 8); in belt_decrypt()
195 PUT_UINT32_LE(b, out, 12); in belt_decrypt()
/freebsd/crypto/libecc/src/examples/hash/
H A Dmd5.c208 PUT_UINT32_LE(ctx->md5_state[0], output, 0); in md5_final()
209 PUT_UINT32_LE(ctx->md5_state[1], output, 4); in md5_final()
210 PUT_UINT32_LE(ctx->md5_state[2], output, 8); in md5_final()
211 PUT_UINT32_LE(ctx->md5_state[3], output, 12); in md5_final()
H A Dmd4.c207 PUT_UINT32_LE(ctx->md4_state[0], output, 0); in md4_final()
208 PUT_UINT32_LE(ctx->md4_state[1], output, 4); in md4_final()
209 PUT_UINT32_LE(ctx->md4_state[2], output, 8); in md4_final()
210 PUT_UINT32_LE(ctx->md4_state[3], output, 12); in md4_final()
H A Dmd4.h50 #ifndef PUT_UINT32_LE
51 #define PUT_UINT32_LE(n, b, i) \ macro
H A Dsha0.h51 #ifndef PUT_UINT32_LE
52 #define PUT_UINT32_LE(n, b, i) \ macro
H A Dsha1.h51 #ifndef PUT_UINT32_LE
52 #define PUT_UINT32_LE(n, b, i) \ macro
H A Dmd5.h51 #ifndef PUT_UINT32_LE
52 #define PUT_UINT32_LE(n, b, i) \ macro
H A Dgostr34_11_94.h51 #ifndef PUT_UINT32_LE
52 #define PUT_UINT32_LE(n, b, i) \ macro
H A Dgostr34_11_94.c182 PUT_UINT32_LE(L_i1, e, 0); in gostr34_11_94_block_encryption()
183 PUT_UINT32_LE(R_i1, e, 4); in gostr34_11_94_block_encryption()
/freebsd/crypto/libecc/include/libecc/hash/
H A Dbelt-hash.h33 #ifndef PUT_UINT32_LE
34 #define PUT_UINT32_LE(n, b, i) \ macro
/freebsd/crypto/libecc/src/sig/
H A Dbip0340.c607 #ifndef PUT_UINT32_LE
608 #define PUT_UINT32_LE(n, b, i) \ macro
689 PUT_UINT32_LE(tmp, (u8*)(&state[i]), 0); in _bip0340_chacha20_block()
H A Dbign_common.c289 PUT_UINT32_LE(i, i_block, 0); in __bign_determinitic_nonce()