Function report |
Source Code:lib\crypto\poly1305.c |
Create Date:2022-07-28 06:47:35 |
Last Modify:2020-03-12 14:18:49 | Copyright©Brick |
home page | Tree |
Annotation kernel can get tool activity | Download SCCT | Chinese |
Name:poly1305_core_emit
Proto:void poly1305_core_emit(const struct poly1305_state *state, void *dst)
Type:void
Parameter:
Type | Parameter | Name |
---|---|---|
const struct poly1305_state * | state | |
void * | dst |
116 | h0 = accumulator, base 2^26 [0] |
117 | h1 = accumulator, base 2^26 [1] |
118 | h2 = accumulator, base 2^26 [2] |
119 | h3 = accumulator, base 2^26 [3] |
120 | h4 = accumulator, base 2^26 [4] |
130 | g0 &= 0x3ffffff |
131 | g1 &= 0x3ffffff |
132 | g2 &= 0x3ffffff |
133 | g3 &= 0x3ffffff |
150 | put_unaligned_le32((h0 >> 0) | (h1 << 26), dst + 0) |
151 | put_unaligned_le32((h1 >> 6) | (h2 << 20), dst + 4) |
152 | put_unaligned_le32((h2 >> 12) | (h3 << 14), dst + 8) |
153 | put_unaligned_le32((h3 >> 18) | (h4 << 8), dst + 12) |
Name | Describe |
---|---|
poly1305_final_generic |
Source code conversion tool public plug-in interface | X |
---|---|
Support c/c++/esqlc/java Oracle/Informix/Mysql Plug-in can realize: logical Report Code generation and batch code conversion |