File tree 1 file changed +3
-1
lines changed
test/jdk/java/security/cert/CertPathBuilder/akiExt
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2014, 2024, Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -118,6 +118,8 @@ public static void main(String[] args) throws Exception {
118
118
PKIXBuilderParameters params = new PKIXBuilderParameters
119
119
(Collections .singleton (anchor ), sel );
120
120
params .setRevocationEnabled (false );
121
+ // Set date to 2024-01-01 to satisfy cert constraints
122
+ params .setDate (new java .util .Date (1704067200000l ));
121
123
122
124
ArrayList <X509Certificate > certs = new ArrayList <>();
123
125
certs .add (intCert );
You can’t perform that action at this time.
0 commit comments