- Timestamp:
- 2017-08-23T00:30:27+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/CertificateAmendment.java
r12620 r12623 61 61 /** 62 62 * Returns the certificate identifier. 63 * @return path for JOSM embedded certificate, alias for platform certificate63 * @return path for JOSM embedded certificate, alias for Windows platform certificate 64 64 */ 65 65 public final String getId() { … … 69 69 /** 70 70 * Returns the certificate filename. 71 * @return filename for both JOSM embedded certificate and platform certificate71 * @return filename for both JOSM embedded certificate and Unix platform certificate 72 72 * @since 12241 73 73 */ … … 95 95 /** 96 96 * Certificates looked into platform native keystore and not embedded in JOSM. 97 * Identifiers must match Windows keystore aliases for efficient search.97 * Identifiers must match Windows keystore aliases and Unix filenames for efficient search. 98 98 */ 99 99 private static final CertAmend[] PLATFORM_CERT_AMEND = { 100 // Government of Netherlands 100 101 new CertAmend("Staat der Nederlanden Root CA - G2", "Staat_der_Nederlanden_Root_CA_-_G2.crt", 101 102 "668c83947da63b724bece1743c31a0e6aed0db8ec5b31be377bb784f91b6716f"), 103 // Government of Netherlands 102 104 new CertAmend("Government of Netherlands G3", "Staat_der_Nederlanden_Root_CA_-_G3.crt", 103 "3c4fb0b95ab8b30032f432b86f535fe172c185d0fd39865837cf36187fa6f428") 105 "3c4fb0b95ab8b30032f432b86f535fe172c185d0fd39865837cf36187fa6f428"), 106 // Trusted and used by French Government - https://www.certigna.fr/autorites/index.xhtml?ac=Racine#lracine 107 new CertAmend("Certigna", "Certigna.crt", 108 "e3b6a2db2ed7ce48842f7ac53241c7b71d54144bfb40c11f3f1d0b42f5eea12d"), 104 109 }; 105 110
Note:
See TracChangeset
for help on using the changeset viewer.