Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
67c907c7
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
67c907c7
编写于
4月 14, 2015
作者:
V
vinnie
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8075374: Responding to OCSP responses
Reviewed-by: mullan
上级
e7a1d062
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
20 addition
and
10 deletion
+20
-10
src/share/classes/java/security/cert/X509CRLSelector.java
src/share/classes/java/security/cert/X509CRLSelector.java
+6
-2
src/share/classes/sun/security/provider/certpath/OCSPResponse.java
.../classes/sun/security/provider/certpath/OCSPResponse.java
+14
-8
未找到文件。
src/share/classes/java/security/cert/X509CRLSelector.java
浏览文件 @
67c907c7
/*
/*
* Copyright (c) 2000, 201
3
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2000, 201
5
, 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
...
@@ -679,10 +679,14 @@ public class X509CRLSelector implements CRLSelector {
...
@@ -679,10 +679,14 @@ public class X509CRLSelector implements CRLSelector {
nowPlusSkew
=
new
Date
(
dateAndTime
.
getTime
()
+
skew
);
nowPlusSkew
=
new
Date
(
dateAndTime
.
getTime
()
+
skew
);
nowMinusSkew
=
new
Date
(
dateAndTime
.
getTime
()
-
skew
);
nowMinusSkew
=
new
Date
(
dateAndTime
.
getTime
()
-
skew
);
}
}
// Check that the test date is within the validity interval:
// [ thisUpdate - MAX_CLOCK_SKEW,
// nextUpdate + MAX_CLOCK_SKEW ]
if
(
nowMinusSkew
.
after
(
nextUpdate
)
if
(
nowMinusSkew
.
after
(
nextUpdate
)
||
nowPlusSkew
.
before
(
crlThisUpdate
))
{
||
nowPlusSkew
.
before
(
crlThisUpdate
))
{
if
(
debug
!=
null
)
{
if
(
debug
!=
null
)
{
debug
.
println
(
"X509CRLSelector.match: update out
of
range"
);
debug
.
println
(
"X509CRLSelector.match: update out
-of-
range"
);
}
}
return
false
;
return
false
;
}
}
...
...
src/share/classes/sun/security/provider/certpath/OCSPResponse.java
浏览文件 @
67c907c7
/*
/*
* Copyright (c) 2003, 201
4
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2003, 201
5
, 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
...
@@ -151,8 +151,8 @@ public final class OCSPResponse {
...
@@ -151,8 +151,8 @@ public final class OCSPResponse {
private
static
final
int
DEFAULT_MAX_CLOCK_SKEW
=
900000
;
private
static
final
int
DEFAULT_MAX_CLOCK_SKEW
=
900000
;
/**
/**
* Integer value indicating the maximum allowable clock skew,
in seconds,
* Integer value indicating the maximum allowable clock skew,
* to be used for the OCSP check.
*
in milliseconds,
to be used for the OCSP check.
*/
*/
private
static
final
int
MAX_CLOCK_SKEW
=
initializeClockSkew
();
private
static
final
int
MAX_CLOCK_SKEW
=
initializeClockSkew
();
...
@@ -586,13 +586,14 @@ public final class OCSPResponse {
...
@@ -586,13 +586,14 @@ public final class OCSPResponse {
"Unable to verify OCSP Response's signature"
);
"Unable to verify OCSP Response's signature"
);
}
}
// Check freshness of OCSPResponse
if
(
nonce
!=
null
)
{
if
(
nonce
!=
null
)
{
if
(
responseNonce
!=
null
&&
!
Arrays
.
equals
(
nonce
,
responseNonce
))
{
if
(
responseNonce
!=
null
&&
!
Arrays
.
equals
(
nonce
,
responseNonce
))
{
throw
new
CertPathValidatorException
(
"Nonces don't match"
);
throw
new
CertPathValidatorException
(
"Nonces don't match"
);
}
}
}
}
// Check freshness of OCSPResponse
long
now
=
(
date
==
null
)
?
System
.
currentTimeMillis
()
:
date
.
getTime
();
long
now
=
(
date
==
null
)
?
System
.
currentTimeMillis
()
:
date
.
getTime
();
Date
nowPlusSkew
=
new
Date
(
now
+
MAX_CLOCK_SKEW
);
Date
nowPlusSkew
=
new
Date
(
now
+
MAX_CLOCK_SKEW
);
Date
nowMinusSkew
=
new
Date
(
now
-
MAX_CLOCK_SKEW
);
Date
nowMinusSkew
=
new
Date
(
now
-
MAX_CLOCK_SKEW
);
...
@@ -602,13 +603,18 @@ public final class OCSPResponse {
...
@@ -602,13 +603,18 @@ public final class OCSPResponse {
if
(
sr
.
nextUpdate
!=
null
)
{
if
(
sr
.
nextUpdate
!=
null
)
{
until
=
" until "
+
sr
.
nextUpdate
;
until
=
" until "
+
sr
.
nextUpdate
;
}
}
debug
.
println
(
"
Response's
validity interval is from "
+
debug
.
println
(
"
OCSP response
validity interval is from "
+
sr
.
thisUpdate
+
until
);
sr
.
thisUpdate
+
until
);
debug
.
println
(
"Checking validity of OCSP response on: "
+
new
Date
(
now
));
}
}
// Check that the test date is within the validity interval
// Check that the test date is within the validity interval:
if
((
sr
.
thisUpdate
!=
null
&&
nowPlusSkew
.
before
(
sr
.
thisUpdate
))
||
// [ thisUpdate - MAX_CLOCK_SKEW,
(
sr
.
nextUpdate
!=
null
&&
nowMinusSkew
.
after
(
sr
.
nextUpdate
)))
// MAX(thisUpdate, nextUpdate) + MAX_CLOCK_SKEW ]
if
(
nowPlusSkew
.
before
(
sr
.
thisUpdate
)
||
nowMinusSkew
.
after
(
sr
.
nextUpdate
!=
null
?
sr
.
nextUpdate
:
sr
.
thisUpdate
))
{
{
throw
new
CertPathValidatorException
(
throw
new
CertPathValidatorException
(
"Response is unreliable: its validity "
+
"Response is unreliable: its validity "
+
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录