Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
b5450d63
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看板
提交
b5450d63
编写于
4月 26, 2014
作者:
M
Matt Caswell
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fixed minor errors in docs
上级
6bcc4475
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
8 addition
and
4 deletion
+8
-4
doc/crypto/PKCS5_PBKDF2_HMAC.pod
doc/crypto/PKCS5_PBKDF2_HMAC.pod
+8
-4
未找到文件。
doc/crypto/PKCS5_PBKDF2_HMAC.pod
浏览文件 @
b5450d63
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
=head1 NAME
=head1 NAME
PKCS5_PBKDF2_HMAC
- password based derivation routine
with salt and iteration count
PKCS5_PBKDF2_HMAC
, PKCS5_PBKDF2_HMAC_SHA1 - password based derivation routines
with salt and iteration count
=head1 SYNOPSIS
=head1 SYNOPSIS
...
@@ -13,6 +13,10 @@ PKCS5_PBKDF2_HMAC - password based derivation routine with salt and iteration co
...
@@ -13,6 +13,10 @@ PKCS5_PBKDF2_HMAC - password based derivation routine with salt and iteration co
const EVP_MD *digest,
const EVP_MD *digest,
int keylen, unsigned char *out);
int keylen, unsigned char *out);
int PKCS5_PBKDF2_HMAC_SHA1(const char *pass, int passlen,
const unsigned char *salt, int saltlen, int iter,
int keylen, unsigned char *out);
=head1 DESCRIPTION
=head1 DESCRIPTION
PKCS5_PBKDF2_HMAC() derives a key from a password using a salt and iteration count
PKCS5_PBKDF2_HMAC() derives a key from a password using a salt and iteration count
...
@@ -24,14 +28,14 @@ function will calculate the length of B<pass> using strlen().
...
@@ -24,14 +28,14 @@ function will calculate the length of B<pass> using strlen().
B<salt> is the salt used in the derivation of length B<saltlen>. If the
B<salt> is the salt used in the derivation of length B<saltlen>. If the
B<salt> is NULL, then B<saltlen> must be 0. The function will not
B<salt> is NULL, then B<saltlen> must be 0. The function will not
attempt to calculate the length of the B<salt> because its not assumed to
attempt to calculate the length of the B<salt> because it
i
s not assumed to
be NULL terminated.
be NULL terminated.
B<iter> is the iteration count and its value should be greater than or
B<iter> is the iteration count and its value should be greater than or
equal to 1. RFC 2898 suggests an iteration count of at least 1000. Any
equal to 1. RFC 2898 suggests an iteration count of at least 1000. Any
B<iter> less than 1 is treated as a single iteration.
B<iter> less than 1 is treated as a single iteration.
B<digest> is message digest function used in the derivation. Values include
B<digest> is
the
message digest function used in the derivation. Values include
any of the EVP_* message digests. PKCS5_PBKDF2_HMAC_SHA1() calls
any of the EVP_* message digests. PKCS5_PBKDF2_HMAC_SHA1() calls
PKCS5_PBKDF2_HMAC() with EVP_sha1().
PKCS5_PBKDF2_HMAC() with EVP_sha1().
...
@@ -50,7 +54,7 @@ of candidate passwords.
...
@@ -50,7 +54,7 @@ of candidate passwords.
=head1 RETURN VALUES
=head1 RETURN VALUES
PKCS5_PBKDF2_HMAC()
returns
1 on success or 0 on error.
PKCS5_PBKDF2_HMAC()
and PBKCS5_PBKDF2_HMAC_SHA1() return
1 on success or 0 on error.
=head1 SEE ALSO
=head1 SEE ALSO
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录