Method | Description | |
---|---|---|
Deserialize ( byte aBytes ) : ISshKey |
Parse byte[] containing SSH key data
|
|
Deserialize ( Stream aStream ) : object |
Parse stream containing SSH key data
|
|
DeserializeFile ( string fileName ) : ISshKey |
Read file containing SSH key data
|
|
GetComment ( IEnumerable |
||
GetFormatter ( string firstLine ) : |
Attempts to return a Formatter that can deserialize data given the specified first line
|
|
Serialize ( Stream aStream, object aObject ) : void |
Serialize ISshKey to stream
|
|
SerializeToFile ( ISshKey aKey, string aFileName ) : void |
Serialize ISshKey to file
|
public Deserialize ( byte aBytes ) : ISshKey | ||
aBytes | byte | byte[] containing SSH key data |
return | ISshKey |
public abstract Deserialize ( Stream aStream ) : object | ||
aStream | Stream | stream containing SSH key data |
return | object |
public DeserializeFile ( string fileName ) : ISshKey | ||
fileName | string | file containing SSH key data |
return | ISshKey |
public static GetComment ( IEnumerable |
||
publicKeyFileLines | IEnumerable |
|
defaultValue | string | |
return | string |
public static GetFormatter ( string firstLine ) : |
||
firstLine | string | first line of data to be deserialized |
return |
public abstract Serialize ( Stream aStream, object aObject ) : void | ||
aStream | Stream | target stream |
aObject | object | ISshKey object |
return | void |
public SerializeToFile ( ISshKey aKey, string aFileName ) : void | ||
aKey | ISshKey | the key to serialize |
aFileName | string | target file |
return | void |