Skip to content

Commit

Permalink
[fix] ERR_CERT_VALIDITY_TOO_LONG error occurs on google chrome
Browse files Browse the repository at this point in the history
  • Loading branch information
funa-tk committed Dec 19, 2019
1 parent 8e8cec9 commit d26b17e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/core/packetproxy/model/CAs/CA.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ private void initKeyStoreCA(InputStream input) throws Exception {
Date from = new Date();
Calendar cal = Calendar.getInstance();
cal.setTime(from);
cal.add(Calendar.YEAR, 3);
cal.add(Calendar.YEAR, 1);
Date to = cal.getTime();

/* Templateの設定 */
Expand Down

0 comments on commit d26b17e

Please sign in to comment.