Home | History | Annotate | Download | only in src

Lines Matching defs:msg

77                                          void const* msg, uint32_t msg_len,
86 uint8_t msg[1];
90 SIZE_MAX - (sizeof(*t4mconcat_buf) - sizeof(t4mconcat_buf->msg));
92 sizeof(*t4mconcat_buf) - sizeof(t4mconcat_buf->msg) + msg_len;
95 if (!msg && (0 != msg_len)) {
104 // compute c = H(t4 || nd || msg_len || msg).
116 // place variable length msg into t4mconcat_buf
117 if (msg) {
118 if (0 != memcpy_S(&t4mconcat_buf->msg[0],
120 sizeof(t4mconcat_buf->msg),
121 msg, msg_len)) {