Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
2d978cbd
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看板
提交
2d978cbd
编写于
8月 04, 2000
作者:
D
Dr. Stephen Henson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Changes needed for Tandem NSK, supplied by Scott Uroff (scott@xypro.com).
Fix warnings with BIO_dump_indent().
上级
0a3f67e3
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
32 addition
and
14 deletion
+32
-14
CHANGES
CHANGES
+3
-0
crypto/asn1/asn1_par.c
crypto/asn1/asn1_par.c
+2
-2
crypto/bn/bn.h
crypto/bn/bn.h
+3
-3
crypto/bn/bn_div.c
crypto/bn/bn_div.c
+1
-1
crypto/bn/bn_lib.c
crypto/bn/bn_lib.c
+7
-7
crypto/bn/bn_mont.c
crypto/bn/bn_mont.c
+16
-1
未找到文件。
CHANGES
浏览文件 @
2d978cbd
...
...
@@ -4,6 +4,9 @@
Changes between 0.9.5a and 0.9.6 [xx XXX 2000]
*) Changes needed for Tandem NSK.
[Scott Uroff scott@xpro.com]
*) Fix SSL 2.0 rollback checking: Due to an off-by-one error in
RSA_padding_check_SSLv23(), special padding was never detected
and thus the SSL 3.0/TLS 1.0 countermeasure against protocol
...
...
crypto/asn1/asn1_par.c
浏览文件 @
2d978cbd
...
...
@@ -292,7 +292,7 @@ static int asn1_parse2(BIO *bp, unsigned char **pp, long length, int offset,
if
(
BIO_write
(
bp
,
"
\n
"
,
1
)
<=
0
)
goto
end
;
}
if
(
BIO_dump_indent
(
bp
,
opp
,
if
(
BIO_dump_indent
(
bp
,
(
char
*
)
opp
,
((
dump
==
-
1
||
dump
>
os
->
length
)
?
os
->
length
:
dump
),
dump_indent
)
<=
0
)
goto
end
;
...
...
@@ -373,7 +373,7 @@ static int asn1_parse2(BIO *bp, unsigned char **pp, long length, int offset,
if
(
BIO_write
(
bp
,
"
\n
"
,
1
)
<=
0
)
goto
end
;
}
if
(
BIO_dump_indent
(
bp
,
p
,
if
(
BIO_dump_indent
(
bp
,
(
char
*
)
p
,
((
dump
==
-
1
||
dump
>
len
)
?
len
:
dump
),
dump_indent
)
<=
0
)
goto
end
;
...
...
crypto/bn/bn.h
浏览文件 @
2d978cbd
...
...
@@ -233,7 +233,7 @@ typedef struct bignum_st
BN_ULONG
*
d
;
/* Pointer to an array of 'BN_BITS2' bit chunks. */
int
top
;
/* Index of last used d +1. */
/* The next are internal book keeping for bn_expand. */
int
max
;
/* Size of the d array. */
int
d
max
;
/* Size of the d array. */
int
neg
;
/* one if the number is negative */
int
flags
;
}
BIGNUM
;
...
...
@@ -435,9 +435,9 @@ int BN_div_recp(BIGNUM *dv, BIGNUM *rem, BIGNUM *m,
/* library internal functions */
#define bn_expand(a,bits) ((((((bits+BN_BITS2-1))/BN_BITS2)) <= (a)->max)?\
#define bn_expand(a,bits) ((((((bits+BN_BITS2-1))/BN_BITS2)) <= (a)->
d
max)?\
(a):bn_expand2((a),(bits)/BN_BITS2+1))
#define bn_wexpand(a,words) (((words) <= (a)->max)?(a):bn_expand2((a),(words)))
#define bn_wexpand(a,words) (((words) <= (a)->
d
max)?(a):bn_expand2((a),(words)))
BIGNUM
*
bn_expand2
(
BIGNUM
*
a
,
int
words
);
#define bn_fix_top(a) \
...
...
crypto/bn/bn_div.c
浏览文件 @
2d978cbd
...
...
@@ -205,7 +205,7 @@ int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor,
BN_init
(
&
wnum
);
wnum
.
d
=
&
(
snum
->
d
[
loop
]);
wnum
.
top
=
div_n
;
wnum
.
max
=
snum
->
max
+
1
;
/* a bit of a lie */
wnum
.
dmax
=
snum
->
d
max
+
1
;
/* a bit of a lie */
/* Get the top 2 words of sdiv */
/* i=sdiv->top; */
...
...
crypto/bn/bn_lib.c
浏览文件 @
2d978cbd
...
...
@@ -262,7 +262,7 @@ void BN_clear_free(BIGNUM *a)
if
(
a
==
NULL
)
return
;
if
(
a
->
d
!=
NULL
)
{
memset
(
a
->
d
,
0
,
a
->
max
*
sizeof
(
a
->
d
[
0
]));
memset
(
a
->
d
,
0
,
a
->
d
max
*
sizeof
(
a
->
d
[
0
]));
if
(
!
(
BN_get_flags
(
a
,
BN_FLG_STATIC_DATA
)))
OPENSSL_free
(
a
->
d
);
}
...
...
@@ -299,7 +299,7 @@ BIGNUM *BN_new(void)
ret
->
flags
=
BN_FLG_MALLOCED
;
ret
->
top
=
0
;
ret
->
neg
=
0
;
ret
->
max
=
0
;
ret
->
d
max
=
0
;
ret
->
d
=
NULL
;
return
(
ret
);
}
...
...
@@ -317,7 +317,7 @@ BIGNUM *bn_expand2(BIGNUM *b, int words)
bn_check_top
(
b
);
if
(
words
>
b
->
max
)
if
(
words
>
b
->
d
max
)
{
bn_check_top
(
b
);
if
(
BN_get_flags
(
b
,
BN_FLG_STATIC_DATA
))
...
...
@@ -427,17 +427,17 @@ BIGNUM *bn_expand2(BIGNUM *b, int words)
}
b
->
d
=
a
;
b
->
max
=
words
;
b
->
d
max
=
words
;
/* Now need to zero any data between b->top and b->max */
A
=
&
(
b
->
d
[
b
->
top
]);
for
(
i
=
(
b
->
max
-
b
->
top
)
>>
3
;
i
>
0
;
i
--
,
A
+=
8
)
for
(
i
=
(
b
->
d
max
-
b
->
top
)
>>
3
;
i
>
0
;
i
--
,
A
+=
8
)
{
A
[
0
]
=
0
;
A
[
1
]
=
0
;
A
[
2
]
=
0
;
A
[
3
]
=
0
;
A
[
4
]
=
0
;
A
[
5
]
=
0
;
A
[
6
]
=
0
;
A
[
7
]
=
0
;
}
for
(
i
=
(
b
->
max
-
b
->
top
)
&
7
;
i
>
0
;
i
--
,
A
++
)
for
(
i
=
(
b
->
d
max
-
b
->
top
)
&
7
;
i
>
0
;
i
--
,
A
++
)
A
[
0
]
=
0
;
#else
memset
(
A
,
0
,
sizeof
(
BN_ULONG
)
*
(
words
+
1
));
...
...
@@ -508,7 +508,7 @@ BIGNUM *BN_copy(BIGNUM *a, const BIGNUM *b)
void
BN_clear
(
BIGNUM
*
a
)
{
if
(
a
->
d
!=
NULL
)
memset
(
a
->
d
,
0
,
a
->
max
*
sizeof
(
a
->
d
[
0
]));
memset
(
a
->
d
,
0
,
a
->
d
max
*
sizeof
(
a
->
d
[
0
]));
a
->
top
=
0
;
a
->
neg
=
0
;
}
...
...
crypto/bn/bn_mont.c
浏览文件 @
2d978cbd
...
...
@@ -157,7 +157,22 @@ int BN_from_montgomery(BIGNUM *ret, BIGNUM *a, BN_MONT_CTX *mont,
#endif
for
(
i
=
0
;
i
<
nl
;
i
++
)
{
#ifdef __TANDEM
{
long
long
t1
;
long
long
t2
;
long
long
t3
;
t1
=
rp
[
0
]
*
(
n0
&
0177777
);
t2
=
037777600000l
;
t2
=
n0
&
t2
;
t3
=
rp
[
0
]
&
0177777
;
t2
=
(
t3
*
t2
)
&
BN_MASK2
;
t1
=
t1
+
t2
;
v
=
bn_mul_add_words
(
rp
,
np
,
nl
,(
BN_ULONG
)
t1
);
}
#else
v
=
bn_mul_add_words
(
rp
,
np
,
nl
,(
rp
[
0
]
*
n0
)
&
BN_MASK2
);
#endif
nrp
++
;
rp
++
;
if
(((
nrp
[
-
1
]
+=
v
)
&
BN_MASK2
)
>=
v
)
...
...
@@ -284,7 +299,7 @@ int BN_MONT_CTX_set(BN_MONT_CTX *mont, const BIGNUM *mod, BN_CTX *ctx)
buf
[
1
]
=
0
;
tmod
.
d
=
buf
;
tmod
.
top
=
1
;
tmod
.
max
=
2
;
tmod
.
d
max
=
2
;
tmod
.
neg
=
mod
->
neg
;
/* Ri = R^-1 mod N*/
if
((
BN_mod_inverse
(
&
Ri
,
R
,
&
tmod
,
ctx
))
==
NULL
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录