Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
6c2c3e9b
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看板
提交
6c2c3e9b
编写于
1月 27, 2000
作者:
R
Richard Levitte
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Update all links so they will be rendered better.
上级
157be2b6
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
24 addition
and
12 deletion
+24
-12
doc/c-indentation.el
doc/c-indentation.el
+10
-1
doc/crypto/BN_mod_mul_montgomery.pod
doc/crypto/BN_mod_mul_montgomery.pod
+4
-3
doc/crypto/DSA_get_ex_new_index.pod
doc/crypto/DSA_get_ex_new_index.pod
+1
-1
doc/crypto/SHA1.pod
doc/crypto/SHA1.pod
+1
-1
doc/crypto/SHA1_Init.pod
doc/crypto/SHA1_Init.pod
+2
-2
doc/crypto/dsa.pod
doc/crypto/dsa.pod
+5
-3
doc/crypto/sha.pod
doc/crypto/sha.pod
+1
-1
未找到文件。
doc/c-indentation.el
浏览文件 @
6c2c3e9b
...
...
@@ -26,11 +26,20 @@
(
c-hanging-braces-alist
)
(
c-offsets-alist
.
((
defun-open
.
+
)
(
defun-block-intro
.
0
)
(
class-open
.
+
)
(
class-close
.
+
)
(
block-open
.
0
)
(
block-close
.
0
)
(
substatement-open
.
+
)
(
statement
.
0
)
(
statement-block-intro
.
0
)
(
statement-case-open
.
+
)
(
statement-case-intro
.
+
)
(
case-label
.
-
)
(
label
.
-
)
(
arglist-cont-nonempty
.
+
)))))
(
arglist-cont-nonempty
.
+
)
(
topmost-intro
.
-
)
(
brace-list-close
.
+
)
(
brace-list-intro
.
+
)
))))
doc/crypto/BN_mod_mul_montgomery.pod
浏览文件 @
6c2c3e9b
...
...
@@ -29,7 +29,7 @@ BN_from_montgomery, BN_to_montgomery - Montgomery multiplication
=head1 DESCRIPTION
These functions implement Montgomery multiplication. They are used
automatically when
BN_mod_exp(3)
is called with suitable input,
automatically when
L<BN_mod_exp(3)|BN_mod_exp(3)>
is called with suitable input,
but they may be useful when several operations are to be performed
using the same modulus.
...
...
@@ -78,11 +78,12 @@ on error.
BN_MONT_CTX_init() and BN_MONT_CTX_free() have no return values.
For the other functions, 1 is returned for success, 0 on error.
The error codes can be obtained by
ERR_get_error(3)
.
The error codes can be obtained by
L<ERR_get_error(3)|ERR_get_error(3)>
.
=head1 SEE ALSO
bn(3), err(3), BN_add(3), BN_CTX_new(3)
L<bn(3)|bn(3)>, L<err(3)|err(3)>, L<BN_add(3)|BN_add(3)>,
L<BN_CTX_new(3)|BN_CTX_new(3)>
=head1 HISTORY
...
...
doc/crypto/DSA_get_ex_new_index.pod
浏览文件 @
6c2c3e9b
...
...
@@ -26,7 +26,7 @@ as described in L<RSA_get_ex_new_index(3)>.
=head1 SEE ALSO
L<RSA_get_ex_new_index(
)|RSA_get_ex_new_index(
)>, L<dsa(3)|dsa(3)>
L<RSA_get_ex_new_index(
3)|RSA_get_ex_new_index(3
)>, L<dsa(3)|dsa(3)>
=head1 HISTORY
...
...
doc/crypto/SHA1.pod
浏览文件 @
6c2c3e9b
...
...
@@ -31,6 +31,6 @@ SHA1() is available in all versions of SSLeay and OpenSSL.
=head1 SEE ALSO
sha(3), ripemd(3), SHA1_Init(3)
L<sha(3)|sha(3)>, L<ripemd(3)|ripemd(3)>, L<SHA1_Init(3)|SHA1_Init(3)>
=cut
doc/crypto/SHA1_Init.pod
浏览文件 @
6c2c3e9b
...
...
@@ -23,7 +23,7 @@ be hashed (B<len> bytes at B<data>).
SHA1_Final() places the message digest in B<md>, which must have space
for SHA_DIGEST_LENGTH == 20 bytes of output, and erases the B<SHA_CTX>.
When the entire message is available at one time, L<SHA1(3)|SHA(
1
)>
When the entire message is available at one time, L<SHA1(3)|SHA(
3
)>
can be used.
=head1 RETURN VALUES
...
...
@@ -37,6 +37,6 @@ versions of SSLeay and OpenSSL.
=head1 SEE ALSO
sha(3), ripemd(3), SHA1(3)
L<sha(3)|sha(3)>, L<ripemd(3)|ripemd(3)>, L<SHA1(3)|SHA1(3)>
=cut
doc/crypto/dsa.pod
浏览文件 @
6c2c3e9b
...
...
@@ -64,9 +64,10 @@ dsa - Digital Signature Algorithm
These functions implement the Digital Signature Algorithm (DSA). The
generation of shared DSA parameters is described in
L<DSA_generate_parameters(3)>; L<DSA_generate_key(3)> describes how to
L<DSA_generate_parameters(3)|DSA_generate_parameters(3)>;
L<DSA_generate_key(3)|DSA_generate_key(3)> describes how to
generate a signature key. Signature generation and verification are
described in L<DSA_sign(3)>.
described in L<DSA_sign(3)
|DSA_sign(3)
>.
The B<DSA> structure consists of several BIGNUM components.
...
...
@@ -90,6 +91,7 @@ Standard, DSS), ANSI X9.30
=head1 SEE ALSO
bn(3), dh(3), err(3), rand(3), rsa(3), sha(3)
L<bn(3)|bn(3)>, L<dh(3)|dh(3)>, L<err(3)|err(3)>, L<rand(3)|rand(3)>,
L<rsa(3)|rsa(3)>, L<sha(3)|sha(3)>
=cut
doc/crypto/sha.pod
浏览文件 @
6c2c3e9b
...
...
@@ -31,6 +31,6 @@ Standard), ANSI X9.30
=head1 SEE ALSO
ripemd(3), SHA1(3), SHA1_Init(3)
L<ripemd(3)|ripemd(3)>, L<SHA1(3)|SHA1(3)>, L<SHA1_Init(3)|SHA1_Init(3)>
=cut
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录