函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:include\crypto\chacha.h Create Date:2022-07-27 07:41:07
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:chacha_init_generic

函数原型:static inline void chacha_init_generic(u32 *state, const u32 *key, const u8 *iv)

返回类型:void

参数:

类型参数名称
u32 *state
const u32 *key
const u8 *iv
57  state[0]等于0x61707865
58  state[1]等于0x3320646e
59  state[2]等于0x79622d32
60  state[3]等于0x6b206574
61  state[4]等于key[0]
62  state[5]等于key[1]
63  state[6]等于key[2]
64  state[7]等于key[3]
65  state[8]等于key[4]
66  state[9]等于key[5]
67  state[10]等于key[6]
68  state[11]等于key[7]
69  state[12]等于get_unaligned_le32(iv + 0)
70  state[13]等于get_unaligned_le32(iv + 4)
71  state[14]等于get_unaligned_le32(iv + 8)
72  state[15]等于get_unaligned_le32(iv + 12)
调用者
名称描述
chacha_init