OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:skipCerts
(Results
1 - 2
of
2
) sorted by null
/libcore/ojluni/src/main/java/sun/security/x509/
InhibitAnyPolicyExtension.java
56
* InhibitAnyPolicy ::=
SkipCerts
58
*
SkipCerts
::= INTEGER (0..MAX)
94
private int
skipCerts
= Integer.MAX_VALUE;
99
out.putInteger(
skipCerts
);
106
* @param
skipCerts
specifies the depth of the certification path.
109
public InhibitAnyPolicyExtension(int
skipCerts
) throws IOException {
110
if (
skipCerts
< -1)
111
throw new IOException("Invalid value for
skipCerts
");
112
if (
skipCerts
== -1)
113
this.
skipCerts
= Integer.MAX_VALUE
[
all
...]
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
PolicyChecker.java
358
*
SkipCerts
value of the InhibitAnyPolicy
381
int
skipCerts
=
385
+ "
skipCerts
Index from cert = " +
skipCerts
);
387
if (
skipCerts
!= -1) {
388
if (
skipCerts
< inhibitAnyPolicy) {
389
inhibitAnyPolicy =
skipCerts
;
[
all
...]
Completed in 907 milliseconds