Changeset 4e267f6
- Timestamp:
- May 14, 2019 5:41:29 PM (22 months ago)
- Branches:
- master
- Children:
- efa72db
- Parents:
- 0531801
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
core/java/src/net/i2p/crypto/CertUtil.java
r0531801 r4e267f6 3 3 import java.io.File; 4 4 import java.io.FileInputStream; 5 import java.io.FileOutputStream; 5 6 import java.io.InputStream; 6 7 import java.io.IOException; … … 65 66 OutputStream os = null; 66 67 try { 67 os = new SecureFileOutputStream(file); 68 // The point is probably to share this, so don't make it 600 69 //os = new SecureFileOutputStream(file); 70 os = new FileOutputStream(file); 68 71 exportCert(cert, os); 69 72 return true;
Note: See TracChangeset
for help on using the changeset viewer.