Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
4ec19e20
T
Third Party Openssl
项目概览
OpenHarmony
/
Third Party Openssl
大约 1 年 前同步成功
通知
9
Star
18
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Openssl
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
4ec19e20
编写于
2月 20, 2000
作者:
U
Ulf Möller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix gcc warnings.
上级
d754b385
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
12 addition
and
13 deletion
+12
-13
apps/passwd.c
apps/passwd.c
+3
-3
apps/s_client.c
apps/s_client.c
+1
-0
crypto/bio/bss_log.c
crypto/bio/bss_log.c
+1
-2
doc/crypto/EVP_DigestInit.pod
doc/crypto/EVP_DigestInit.pod
+1
-1
util/libeay.num
util/libeay.num
+6
-7
未找到文件。
apps/passwd.c
浏览文件 @
4ec19e20
...
...
@@ -20,7 +20,7 @@
# include <openssl/des.h>
#endif
#ifndef NO_APR1
# include <openssl/
des
.h>
# include <openssl/
md5
.h>
#endif
...
...
@@ -323,13 +323,13 @@ static char *apr1_crypt(const char *passwd, const char *salt)
MD5_CTX
md2
;
MD5_Init
(
&
md2
);
MD5_Update
(
&
md2
,
(
i
&
1
)
?
passwd
:
buf
,
MD5_Update
(
&
md2
,
(
i
&
1
)
?
(
unsigned
char
*
)
passwd
:
buf
,
(
i
&
1
)
?
passwd_len
:
sizeof
buf
);
if
(
i
%
3
)
MD5_Update
(
&
md2
,
salt_out
,
salt_len
);
if
(
i
%
7
)
MD5_Update
(
&
md2
,
passwd
,
passwd_len
);
MD5_Update
(
&
md2
,
(
i
&
1
)
?
buf
:
passwd
,
MD5_Update
(
&
md2
,
(
i
&
1
)
?
buf
:
(
unsigned
char
*
)
passwd
,
(
i
&
1
)
?
sizeof
buf
:
passwd_len
);
MD5_Final
(
buf
,
&
md2
);
}
...
...
apps/s_client.c
浏览文件 @
4ec19e20
...
...
@@ -508,6 +508,7 @@ re_start:
* are any keypresses. Note: this is a hack, in a proper
* Windows application we wouldn't do this.
*/
i
=
0
;
if
(
!
write_tty
)
{
if
(
read_tty
)
{
tv
.
tv_sec
=
1
;
...
...
crypto/bio/bss_log.c
浏览文件 @
4ec19e20
...
...
@@ -133,11 +133,10 @@ static int MS_CALLBACK slg_write(BIO *b, char *in, int inl)
char
*
buf
=
in
;
char
*
pp
;
#if defined(WIN32)
LP
T
STR
lpszStrings
[
2
];
LP
C
STR
lpszStrings
[
2
];
WORD
evtype
=
EVENTLOG_ERROR_TYPE
;
int
pid
=
_getpid
();
char
pidbuf
[
20
];
int
pidbufl
;
#else
int
priority
;
#endif
...
...
doc/crypto/EVP_DigestInit.pod
浏览文件 @
4ec19e20
...
...
@@ -115,7 +115,7 @@ EVP_md_null(), EVP_MD *EVP_md2(), EVP_MD *EVP_md5(), EVP_MD *EVP_sha(),
EVP_sha1(), EVP_dss(), EVP_dss1(), EVP_mdc2() and EVP_ripemd160() return
pointers to the corresponding EVP_MD structures.
B<EVP_get_digestbyname>, B<EVP_get_digestbynid> and B<EVP_get_digestbyobj>
EVP_get_digestbyname(), EVP_get_digestbynid() and EVP_get_digestbyobj()
return either an B<EVP_MD> structure or NULL if an error occurs.
=head1 NOTES
...
...
util/libeay.num
浏览文件 @
4ec19e20
...
...
@@ -1304,13 +1304,12 @@ i2d_SXNETID 1329
d2i_SXNETID 1330
SXNETID_new 1331
SXNETID_free 1332
DSA_SIG_new 1333
DSA_SIG_free 1334
DSA_do_sign 1335
DSA_do_verify 1336
d2i_DSA_SIG 1337
i2d_DSA_SIG 1338
DSA_SIG_new 1333
DSA_SIG_free 1334
DSA_do_sign 1335
DSA_do_verify 1336
d2i_DSA_SIG 1337
i2d_DSA_SIG 1338
i2d_ASN1_VISIBLESTRING 1339
d2i_ASN1_VISIBLESTRING 1340
i2d_ASN1_UTF8STRING 1341
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录