blob: c2d1c117e85515ff9d5bb2fa097a26408837d709 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
/**
* Marshal a state into a buffer
*
* @param state The state to marshal
* @param buf Output buffer, `NULL` to only return the required size
* @return The number of bytes marshalled to `buf`
*/
size_t
libsha1_marshal(const struct libsha1_state *restrict state, void *restrict buf_)
{
char *restrict buf = buf_;
size_t off = 0;
if (buf)
*(int *)buf = 0; /* version */
off += sizeof(int);
if (buf)
*(enum libsha1_algorithm *)&buf[off] = state->algorithm;
off += sizeof(enum libsha1_algorithm);
if (buf)
*(size_t *)&buf[off] = state->message_size;
off += sizeof(size_t);
if (buf)
memcpy(&buf[off], state->w, sizeof(state->w));
off += sizeof(state->w);
if (buf)
memcpy(&buf[off], state->h, sizeof(state->h));
off += sizeof(state->h);
if (buf)
*(size_t *)&buf[off] = state->chunk_size;
off += sizeof(size_t);
if (buf)
memcpy(&buf[off], state->chunk, (state->message_size / 8) % state->chunk_size);
off += (state->message_size / 8) % state->chunk_size;
return off;
}
|