Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
efb41629
T
Third Party Openssl
项目概览
OpenHarmony
/
Third Party Openssl
1 年多 前同步成功
通知
10
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看板
提交
efb41629
编写于
2月 11, 2000
作者:
B
Ben Laurie
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix shadow.
上级
f6814ea4
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
8 addition
and
8 deletion
+8
-8
apps/passwd.c
apps/passwd.c
+8
-8
未找到文件。
apps/passwd.c
浏览文件 @
efb41629
...
@@ -46,7 +46,7 @@ int MAIN(int argc, char **argv)
...
@@ -46,7 +46,7 @@ int MAIN(int argc, char **argv)
BIO
*
out
=
NULL
;
BIO
*
out
=
NULL
;
int
i
,
badopt
,
opt_done
;
int
i
,
badopt
,
opt_done
;
int
passed_salt
=
0
,
quiet
=
0
,
table
=
0
;
int
passed_salt
=
0
,
quiet
=
0
,
table
=
0
;
int
crypt
=
0
;
int
use
crypt
=
0
;
size_t
pw_maxlen
=
0
;
size_t
pw_maxlen
=
0
;
apps_startup
();
apps_startup
();
...
@@ -64,7 +64,7 @@ int MAIN(int argc, char **argv)
...
@@ -64,7 +64,7 @@ int MAIN(int argc, char **argv)
while
(
!
badopt
&&
!
opt_done
&&
argv
[
++
i
]
!=
NULL
)
while
(
!
badopt
&&
!
opt_done
&&
argv
[
++
i
]
!=
NULL
)
{
{
if
(
strcmp
(
argv
[
i
],
"-crypt"
)
==
0
)
if
(
strcmp
(
argv
[
i
],
"-crypt"
)
==
0
)
crypt
=
1
;
use
crypt
=
1
;
else
if
(
strcmp
(
argv
[
i
],
"-salt"
)
==
0
)
else
if
(
strcmp
(
argv
[
i
],
"-salt"
)
==
0
)
{
{
if
((
argv
[
i
+
1
]
!=
NULL
)
&&
(
salt
==
NULL
))
if
((
argv
[
i
+
1
]
!=
NULL
)
&&
(
salt
==
NULL
))
...
@@ -88,9 +88,9 @@ int MAIN(int argc, char **argv)
...
@@ -88,9 +88,9 @@ int MAIN(int argc, char **argv)
}
}
}
}
if
(
crypt
/* + algo2 + algo3 + ... */
==
0
)
/* use default */
if
(
use
crypt
/* + algo2 + algo3 + ... */
==
0
)
/* use default */
crypt
=
1
;
use
crypt
=
1
;
if
(
crypt
/* + algo2 + algo3 */
>
1
)
/* conflict */
if
(
use
crypt
/* + algo2 + algo3 */
>
1
)
/* conflict */
badopt
=
1
;
badopt
=
1
;
if
(
badopt
)
if
(
badopt
)
...
@@ -105,7 +105,7 @@ int MAIN(int argc, char **argv)
...
@@ -105,7 +105,7 @@ int MAIN(int argc, char **argv)
goto
err
;
goto
err
;
}
}
if
(
crypt
)
if
(
use
crypt
)
pw_maxlen
=
8
;
pw_maxlen
=
8
;
/* else if ... */
/* else if ... */
...
@@ -131,7 +131,7 @@ int MAIN(int argc, char **argv)
...
@@ -131,7 +131,7 @@ int MAIN(int argc, char **argv)
/* first make sure we have a salt */
/* first make sure we have a salt */
if
(
!
passed_salt
)
if
(
!
passed_salt
)
{
{
if
(
crypt
)
if
(
use
crypt
)
{
{
if
(
salt_malloc
==
NULL
)
if
(
salt_malloc
==
NULL
)
{
{
...
@@ -165,7 +165,7 @@ int MAIN(int argc, char **argv)
...
@@ -165,7 +165,7 @@ int MAIN(int argc, char **argv)
assert
(
strlen
(
passwd
)
<=
pw_maxlen
);
assert
(
strlen
(
passwd
)
<=
pw_maxlen
);
/* now compute password hash */
/* now compute password hash */
if
(
crypt
)
if
(
use
crypt
)
{
{
char
*
hash
=
des_crypt
(
passwd
,
salt
);
char
*
hash
=
des_crypt
(
passwd
,
salt
);
if
(
table
)
if
(
table
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录