Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
036c8d7e
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
036c8d7e
编写于
1月 12, 2000
作者:
U
Ulf Möller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
PKCS#1 signatures don't use randomness.
Add a note about the padding functions.
上级
6a3fff5e
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
6 addition
and
10 deletion
+6
-10
doc/crypto/RSA_padding_add_PKCS1_type_1.pod
doc/crypto/RSA_padding_add_PKCS1_type_1.pod
+4
-3
doc/crypto/RSA_private_encrypt.pod
doc/crypto/RSA_private_encrypt.pod
+1
-4
doc/crypto/RSA_sign.pod
doc/crypto/RSA_sign.pod
+1
-3
未找到文件。
doc/crypto/RSA_padding_add_PKCS1_type_1.pod
浏览文件 @
036c8d7e
...
@@ -46,9 +46,10 @@ padding
...
@@ -46,9 +46,10 @@ padding
=head1 DESCRIPTION
=head1 DESCRIPTION
The RSA_padding_xxx_xxx() functions are called from the RSA encrypt,
The RSA_padding_xxx_xxx() functions are called from the RSA encrypt,
decrypt, sign and verify functions.
decrypt, sign and verify functions. Normally they should not be called
from application programs.
T
hey can also be called directly to implement padding for other
However, t
hey can also be called directly to implement padding for other
asymmetric ciphers. RSA_padding_add_PKCS1_OAEP() and
asymmetric ciphers. RSA_padding_add_PKCS1_OAEP() and
RSA_padding_check_PKCS1_OAEP() may be used in an application combined
RSA_padding_check_PKCS1_OAEP() may be used in an application combined
with B<RSA_NO_PADDING> in order to implement OAEP with an encoding
with B<RSA_NO_PADDING> in order to implement OAEP with an encoding
...
@@ -72,7 +73,7 @@ PKCS #1 v2.0 EME-PKCS1-v1_5 (PKCS #1 v1.5 block type 2)
...
@@ -72,7 +73,7 @@ PKCS #1 v2.0 EME-PKCS1-v1_5 (PKCS #1 v1.5 block type 2)
=item PKCS1_OAEP
=item PKCS1_OAEP
PKCS #1 EME-OAEP
PKCS #1
v2.0
EME-OAEP
=item SSLv23
=item SSLv23
...
...
doc/crypto/RSA_private_encrypt.pod
浏览文件 @
036c8d7e
...
@@ -42,9 +42,6 @@ Signing user data directly with RSA is insecure.
...
@@ -42,9 +42,6 @@ Signing user data directly with RSA is insecure.
=back
=back
The random number generator must be seeded prior to calling
RSA_private_encrypt().
RSA_public_decrypt() recovers the message digest from the B<flen>
RSA_public_decrypt() recovers the message digest from the B<flen>
bytes long signature at B<from> using the signer's public key
bytes long signature at B<from> using the signer's public key
B<rsa>. B<to> must point to a memory section large enough to hold the
B<rsa>. B<to> must point to a memory section large enough to hold the
...
@@ -62,7 +59,7 @@ obtained by ERR_get_error(3).
...
@@ -62,7 +59,7 @@ obtained by ERR_get_error(3).
=head1 SEE ALSO
=head1 SEE ALSO
err(3), r
and(3), r
sa(3), RSA_sign(3), RSA_verify(3)
err(3), rsa(3), RSA_sign(3), RSA_verify(3)
=head1 HISTORY
=head1 HISTORY
...
...
doc/crypto/RSA_sign.pod
浏览文件 @
036c8d7e
...
@@ -27,8 +27,6 @@ B<NID_md5>; see L<objects> for details. If B<type> is B<NID_md5_sha1>,
...
@@ -27,8 +27,6 @@ B<NID_md5>; see L<objects> for details. If B<type> is B<NID_md5_sha1>,
an SSL signature (MD5 and SHA1 message digests with PKCS #1 padding
an SSL signature (MD5 and SHA1 message digests with PKCS #1 padding
and no algorithm identifier) is created.
and no algorithm identifier) is created.
The random number generator must be seeded prior to calling RSA_sign().
RSA_verify() verifies that the signature B<sigbuf> of size B<siglen>
RSA_verify() verifies that the signature B<sigbuf> of size B<siglen>
matches a given message digest B<m> of size B<m_len>. B<type> denotes
matches a given message digest B<m> of size B<m_len>. B<type> denotes
the message digest algorithm that was used to generate the signature.
the message digest algorithm that was used to generate the signature.
...
@@ -52,7 +50,7 @@ SSL, PKCS #1 v2.0
...
@@ -52,7 +50,7 @@ SSL, PKCS #1 v2.0
=head1 SEE ALSO
=head1 SEE ALSO
err(3), objects(3), r
and(3), r
sa(3), RSA_private_encrypt(3),
err(3), objects(3), rsa(3), RSA_private_encrypt(3),
RSA_public_decrypt(3)
RSA_public_decrypt(3)
=head1 HISTORY
=head1 HISTORY
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录