Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
f0298ee9
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
f0298ee9
编写于
12月 09, 2021
作者:
dengyihao
提交者:
GitHub
12月 09, 2021
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #9009 from taosdata/fix/rename_md5_func_name
[TD-11894]<fix> rename MD5 func name
上级
175d159e
5f4be73d
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
25 addition
and
25 deletion
+25
-25
include/util/tmd5.h
include/util/tmd5.h
+4
-4
include/util/tutil.h
include/util/tutil.h
+4
-4
source/libs/transport/src/rpcMain.c
source/libs/transport/src/rpcMain.c
+12
-12
source/util/src/tmd5.c
source/util/src/tmd5.c
+5
-5
未找到文件。
include/util/tmd5.h
浏览文件 @
f0298ee9
...
...
@@ -30,10 +30,10 @@ typedef struct {
uint32_t
buf
[
4
];
/* scratch buffer */
uint8_t
in
[
64
];
/* input buffer */
uint8_t
digest
[
16
];
/* actual digest after MD5Final call */
}
MD5_CTX
;
}
T_
MD5_CTX
;
void
MD5Init
(
MD5_CTX
*
mdContext
);
void
MD5Update
(
MD5_CTX
*
mdContext
,
uint8_t
*
inBuf
,
unsigned
int
inLen
);
void
MD5Final
(
MD5_CTX
*
mdContext
);
void
tMD5Init
(
T_
MD5_CTX
*
mdContext
);
void
tMD5Update
(
T_
MD5_CTX
*
mdContext
,
uint8_t
*
inBuf
,
unsigned
int
inLen
);
void
tMD5Final
(
T_
MD5_CTX
*
mdContext
);
#endif
/*_TD_UTIL_MD5_H*/
include/util/tutil.h
浏览文件 @
f0298ee9
...
...
@@ -47,10 +47,10 @@ void taosIp2String(uint32_t ip, char *str);
void
taosIpPort2String
(
uint32_t
ip
,
uint16_t
port
,
char
*
str
);
static
FORCE_INLINE
void
taosEncryptPass
(
uint8_t
*
inBuf
,
size_t
inLen
,
char
*
target
)
{
MD5_CTX
context
;
MD5Init
(
&
context
);
MD5Update
(
&
context
,
inBuf
,
(
unsigned
int
)
inLen
);
MD5Final
(
&
context
);
T_
MD5_CTX
context
;
t
MD5Init
(
&
context
);
t
MD5Update
(
&
context
,
inBuf
,
(
unsigned
int
)
inLen
);
t
MD5Final
(
&
context
);
memcpy
(
target
,
context
.
digest
,
TSDB_KEY_LEN
);
}
...
...
source/libs/transport/src/rpcMain.c
浏览文件 @
f0298ee9
...
...
@@ -1523,14 +1523,14 @@ static SRpcHead *rpcDecompressRpcMsg(SRpcHead *pHead) {
}
static
int
rpcAuthenticateMsg
(
void
*
pMsg
,
int
msgLen
,
void
*
pAuth
,
void
*
pKey
)
{
MD5_CTX
context
;
T_
MD5_CTX
context
;
int
ret
=
-
1
;
MD5Init
(
&
context
);
MD5Update
(
&
context
,
(
uint8_t
*
)
pKey
,
TSDB_KEY_LEN
);
MD5Update
(
&
context
,
(
uint8_t
*
)
pMsg
,
msgLen
);
MD5Update
(
&
context
,
(
uint8_t
*
)
pKey
,
TSDB_KEY_LEN
);
MD5Final
(
&
context
);
t
MD5Init
(
&
context
);
t
MD5Update
(
&
context
,
(
uint8_t
*
)
pKey
,
TSDB_KEY_LEN
);
t
MD5Update
(
&
context
,
(
uint8_t
*
)
pMsg
,
msgLen
);
t
MD5Update
(
&
context
,
(
uint8_t
*
)
pKey
,
TSDB_KEY_LEN
);
t
MD5Final
(
&
context
);
if
(
memcmp
(
context
.
digest
,
pAuth
,
sizeof
(
context
.
digest
))
==
0
)
ret
=
0
;
...
...
@@ -1538,13 +1538,13 @@ static int rpcAuthenticateMsg(void *pMsg, int msgLen, void *pAuth, void *pKey) {
}
static
void
rpcBuildAuthHead
(
void
*
pMsg
,
int
msgLen
,
void
*
pAuth
,
void
*
pKey
)
{
MD5_CTX
context
;
T_
MD5_CTX
context
;
MD5Init
(
&
context
);
MD5Update
(
&
context
,
(
uint8_t
*
)
pKey
,
TSDB_KEY_LEN
);
MD5Update
(
&
context
,
(
uint8_t
*
)
pMsg
,
msgLen
);
MD5Update
(
&
context
,
(
uint8_t
*
)
pKey
,
TSDB_KEY_LEN
);
MD5Final
(
&
context
);
t
MD5Init
(
&
context
);
t
MD5Update
(
&
context
,
(
uint8_t
*
)
pKey
,
TSDB_KEY_LEN
);
t
MD5Update
(
&
context
,
(
uint8_t
*
)
pMsg
,
msgLen
);
t
MD5Update
(
&
context
,
(
uint8_t
*
)
pKey
,
TSDB_KEY_LEN
);
t
MD5Final
(
&
context
);
memcpy
(
pAuth
,
context
.
digest
,
sizeof
(
context
.
digest
));
}
...
...
source/util/src/tmd5.c
浏览文件 @
f0298ee9
...
...
@@ -84,8 +84,8 @@ static uint8_t PADDING[64] = {0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x
/* The routine MD5Init initializes the message-digest context
mdContext. All fields are set to zero.
*/
void
MD5Init
(
MD5_CTX
*
mdContext
)
{
memset
(
mdContext
,
0
,
sizeof
(
MD5_CTX
));
void
tMD5Init
(
T_
MD5_CTX
*
mdContext
)
{
memset
(
mdContext
,
0
,
sizeof
(
T_
MD5_CTX
));
/* Load magic initialization constants. */
mdContext
->
buf
[
0
]
=
(
uint32_t
)
0x67452301
;
...
...
@@ -98,7 +98,7 @@ void MD5Init(MD5_CTX *mdContext) {
account for the presence of each of the characters inBuf[0..inLen-1]
in the message whose digest is being computed.
*/
void
MD5Update
(
MD5_CTX
*
mdContext
,
uint8_t
*
inBuf
,
unsigned
int
inLen
)
{
void
tMD5Update
(
T_
MD5_CTX
*
mdContext
,
uint8_t
*
inBuf
,
unsigned
int
inLen
)
{
uint32_t
in
[
16
];
int
mdi
;
unsigned
int
i
,
ii
;
...
...
@@ -129,7 +129,7 @@ void MD5Update(MD5_CTX *mdContext, uint8_t *inBuf, unsigned int inLen) {
/* The routine MD5Final terminates the message-digest computation and
ends with the desired message digest in mdContext->digest[0...15].
*/
void
MD5Final
(
MD5_CTX
*
mdContext
)
{
void
tMD5Final
(
T_
MD5_CTX
*
mdContext
)
{
uint32_t
in
[
16
];
int
mdi
;
unsigned
int
i
,
ii
;
...
...
@@ -144,7 +144,7 @@ void MD5Final(MD5_CTX *mdContext) {
/* pad out to 56 mod 64 */
padLen
=
(
mdi
<
56
)
?
(
56
-
mdi
)
:
(
120
-
mdi
);
MD5Update
(
mdContext
,
PADDING
,
padLen
);
t
MD5Update
(
mdContext
,
PADDING
,
padLen
);
/* append length in bits and transform */
for
(
i
=
0
,
ii
=
0
;
i
<
14
;
i
++
,
ii
+=
4
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录