1 2 29 30 package com.jcraft.jsch; 31 32 public interface Identity{ 33 public boolean setPassphrase(byte[] passphrase) throws JSchException; 34 public byte[] getPublicKeyBlob(); 35 public byte[] getSignature(byte[] data); 36 public boolean decrypt(); 37 public String getAlgName(); 38 public String getName(); 39 public boolean isEncrypted(); 40 public void clear(); 41 } 42 | Popular Tags |