(String file, String password, String passwordFile)
| 123 | |
| 124 | |
| 125 | private void testKey(String file, String password, String passwordFile) throws Exception { |
| 126 | PEMFile pemFile = new PEMFile(getPath(file), password, getPath(passwordFile), null); |
| 127 | PrivateKey pk = pemFile.getPrivateKey(); |
| 128 | Assert.assertNotNull(pk); |
| 129 | } |
| 130 | |
| 131 | |
| 132 | private String getPath(String file) throws IOException { |
no test coverage detected