1 19 20 package com.sslexplorer.security.pki; 21 22 27 public interface SshPublicKeyFormat { 28 33 public void setComment(String comment); 34 35 40 public String getComment(); 41 42 49 public boolean supportsAlgorithm(String algorithm); 50 51 58 public byte[] formatKey(byte[] keyblob); 59 60 69 public byte[] getKeyBlob(byte[] formattedKey) throws InvalidKeyException; 70 71 76 public String getFormatType(); 77 78 85 public boolean isFormatted(byte[] formattedKey); 86 } 87 | Popular Tags |