/* * Note: the asm function only uses the 'state' field of struct sm3_state. * It is assumed to be the first field.
*/
asmlinkage void sm3_transform_zvksh_zvkb( struct sm3_state *state, const u8 *data, int num_blocks);
staticvoid sm3_block(struct sm3_state *state, const u8 *data, int num_blocks)
{ /* * Ensure struct sm3_state begins directly with the SM3 * 256-bit internal state, as this is what the asm function expects.
*/
BUILD_BUG_ON(offsetof(struct sm3_state, state) != 0);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.