Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell11
提交
baccb0cf
D
dragonwell11
项目概览
openanolis
/
dragonwell11
通知
7
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell11
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
baccb0cf
编写于
12月 25, 2019
作者:
W
weijun
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8236470: Deal with ECDSA using ecdsa-with-SHA2 plus hash algorithm as AlgorithmId
Reviewed-by: xuelei
上级
84dd5c50
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
16 addition
and
7 deletion
+16
-7
src/java.base/share/classes/sun/security/x509/AlgorithmId.java
...ava.base/share/classes/sun/security/x509/AlgorithmId.java
+12
-3
test/jdk/sun/security/pkcs11/PKCS11Test.java
test/jdk/sun/security/pkcs11/PKCS11Test.java
+4
-4
未找到文件。
src/java.base/share/classes/sun/security/x509/AlgorithmId.java
浏览文件 @
baccb0cf
...
...
@@ -236,6 +236,9 @@ public class AlgorithmId implements Serializable, DerEncoder {
* return a name such as "MD5withRSA" for a signature algorithm on
* some systems. It also returns names like "OID.1.2.3.4", when
* no particular name for the algorithm is known.
*
* Note: for ecdsa-with-SHA2 plus hash algorithm (Ex: SHA-256), this method
* returns the "full" signature algorithm (Ex: SHA256withECDSA) directly.
*/
public
String
getName
()
{
String
algName
=
nameTable
.
get
(
algid
);
...
...
@@ -245,7 +248,7 @@ public class AlgorithmId implements Serializable, DerEncoder {
if
((
params
!=
null
)
&&
algid
.
equals
((
Object
)
specifiedWithECDSA_oid
))
{
try
{
AlgorithmId
paramsId
=
AlgorithmId
.
parse
(
new
DerValue
(
getEncodedParams
()));
AlgorithmId
.
parse
(
new
DerValue
(
params
.
toByteArray
()));
String
paramsName
=
paramsId
.
getName
();
algName
=
makeSigAlg
(
paramsName
,
"EC"
);
}
catch
(
IOException
e
)
{
...
...
@@ -261,12 +264,18 @@ public class AlgorithmId implements Serializable, DerEncoder {
/**
* Returns the DER encoded parameter, which can then be
* used to initialize java.security.AlgorithmParamters.
* used to initialize java.security.AlgorithmParameters.
*
* Note: for ecdsa-with-SHA2 plus hash algorithm (Ex: SHA-256), this method
* returns null because {@link #getName()} has already returned the "full"
* signature algorithm (Ex: SHA256withECDSA).
*
* @return DER encoded parameters, or null not present.
*/
public
byte
[]
getEncodedParams
()
throws
IOException
{
return
(
params
==
null
)
?
null
:
params
.
toByteArray
();
return
(
params
==
null
||
algid
.
equals
(
specifiedWithECDSA_oid
))
?
null
:
params
.
toByteArray
();
}
/**
...
...
test/jdk/sun/security/pkcs11/PKCS11Test.java
浏览文件 @
baccb0cf
...
...
@@ -79,11 +79,11 @@ public abstract class PKCS11Test {
static
{
// hack
String
absBase
=
new
File
(
BASE
).
getAbsolutePath
();
int
k
=
absBase
.
indexOf
(
SEP
+
"test"
+
SEP
+
"
sun
"
+
SEP
);
int
k
=
absBase
.
indexOf
(
SEP
+
"test"
+
SEP
+
"
jdk
"
+
SEP
);
if
(
k
<
0
)
k
=
0
;
String
p1
=
absBase
.
substring
(
0
,
k
+
6
);
String
p2
=
absBase
.
substring
(
k
+
5
);
CLOSED_BASE
=
p1
+
"closed"
+
p2
;
String
p1
=
absBase
.
substring
(
0
,
k
);
String
p2
=
absBase
.
substring
(
k
);
CLOSED_BASE
=
p1
+
"
/../
closed"
+
p2
;
// set it as a system property to make it available in policy file
System
.
setProperty
(
"closed.base"
,
CLOSED_BASE
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录