(String prvfile, String pubfile, JSch jsch)
| 37 | private String identity; |
| 38 | |
| 39 | static IdentityFile newInstance(String prvfile, String pubfile, JSch jsch) throws JSchException{ |
| 40 | KeyPair kpair = KeyPair.load(jsch, prvfile, pubfile); |
| 41 | return new IdentityFile(jsch, prvfile, kpair); |
| 42 | } |
| 43 | |
| 44 | static IdentityFile newInstance(String name, byte[] prvkey, byte[] pubkey, JSch jsch) throws JSchException{ |
| 45 |
no test coverage detected