mirror of
https://github.com/jedisct1/libsodium.git
synced 2026-08-25 08:37:13 +09:00
10 lines
165 B
C
10 lines
165 B
C
#include "uint32_pack.h"
|
|
|
|
void uint32_pack(unsigned char *y,crypto_uint32 x)
|
|
{
|
|
*y++ = x; x >>= 8;
|
|
*y++ = x; x >>= 8;
|
|
*y++ = x; x >>= 8;
|
|
*y++ = x; x >>= 8;
|
|
}
|