Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell11
提交
1bec85d0
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,发现更多精彩内容 >>
提交
1bec85d0
编写于
5月 10, 2019
作者:
C
clanger
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8223555: Cleanups in cacerts tests
Reviewed-by: xuelei
上级
e1e6e063
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
14 addition
and
6 deletion
+14
-6
test/jdk/security/infra/java/security/cert/CertPathValidator/certification/ValidatePathWithParams.java
...rtPathValidator/certification/ValidatePathWithParams.java
+2
-2
test/jdk/sun/security/lib/cacerts/VerifyCACerts.java
test/jdk/sun/security/lib/cacerts/VerifyCACerts.java
+12
-4
未找到文件。
test/jdk/security/infra/java/security/cert/CertPathValidator/certification/ValidatePathWithParams.java
浏览文件 @
1bec85d0
/*
/*
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2017,
2019,
Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
*
* This code is free software; you can redistribute it and/or modify it
* This code is free software; you can redistribute it and/or modify it
...
@@ -253,7 +253,7 @@ public class ValidatePathWithParams {
...
@@ -253,7 +253,7 @@ public class ValidatePathWithParams {
}
}
// Generate CertPath with certsToValidate
// Generate CertPath with certsToValidate
ArrayList
<
X509Certificate
>
certs
=
new
ArrayList
();
ArrayList
<
X509Certificate
>
certs
=
new
ArrayList
<>
();
for
(
String
cert
:
certsToValidate
)
{
for
(
String
cert
:
certsToValidate
)
{
if
(
cert
!=
null
)
{
if
(
cert
!=
null
)
{
certs
.
add
(
getCertificate
(
cert
));
certs
.
add
(
getCertificate
(
cert
));
...
...
test/jdk/sun/security/lib/cacerts/VerifyCACerts.java
浏览文件 @
1bec85d0
...
@@ -32,8 +32,15 @@ import java.io.File;
...
@@ -32,8 +32,15 @@ import java.io.File;
import
java.io.FileInputStream
;
import
java.io.FileInputStream
;
import
java.security.KeyStore
;
import
java.security.KeyStore
;
import
java.security.MessageDigest
;
import
java.security.MessageDigest
;
import
java.security.cert.*
;
import
java.security.cert.Certificate
;
import
java.util.*
;
import
java.security.cert.CertificateExpiredException
;
import
java.security.cert.CertificateNotYetValidException
;
import
java.security.cert.X509Certificate
;
import
java.util.Date
;
import
java.util.Enumeration
;
import
java.util.HashMap
;
import
java.util.HashSet
;
import
java.util.Map
;
public
class
VerifyCACerts
{
public
class
VerifyCACerts
{
...
@@ -45,8 +52,8 @@ public class VerifyCACerts {
...
@@ -45,8 +52,8 @@ public class VerifyCACerts {
private
static
final
int
COUNT
=
92
;
private
static
final
int
COUNT
=
92
;
// map of cert alias to SHA-256 fingerprint
// map of cert alias to SHA-256 fingerprint
private
static
final
Map
<
String
,
String
>
FINGERPRINT_MAP
@SuppressWarnings
(
"serial"
)
=
new
HashMap
<
String
,
String
>()
{
private
static
final
Map
<
String
,
String
>
FINGERPRINT_MAP
=
new
HashMap
<
>()
{
{
{
put
(
"actalisauthenticationrootca [jdk]"
,
put
(
"actalisauthenticationrootca [jdk]"
,
"55:92:60:84:EC:96:3A:64:B9:6E:2A:BE:01:CE:0B:A8:6A:64:FB:FE:BC:C7:AA:B5:AF:C1:55:B3:7F:D7:60:66"
);
"55:92:60:84:EC:96:3A:64:B9:6E:2A:BE:01:CE:0B:A8:6A:64:FB:FE:BC:C7:AA:B5:AF:C1:55:B3:7F:D7:60:66"
);
...
@@ -237,6 +244,7 @@ public class VerifyCACerts {
...
@@ -237,6 +244,7 @@ public class VerifyCACerts {
// Exception list to 90 days expiry policy
// Exception list to 90 days expiry policy
// No error will be reported if certificate in this list expires
// No error will be reported if certificate in this list expires
@SuppressWarnings
(
"serial"
)
private
static
final
HashSet
<
String
>
EXPIRY_EXC_ENTRIES
=
new
HashSet
<>()
{
private
static
final
HashSet
<
String
>
EXPIRY_EXC_ENTRIES
=
new
HashSet
<>()
{
{
{
// Valid until: Sat Jul 06 19:59:59 EDT 2019
// Valid until: Sat Jul 06 19:59:59 EDT 2019
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录