dlech.SshAgentLib.KeyFormatter.Deserialize C# (CSharp) Метод

Deserialize() публичный Метод

Parse byte[] containing SSH key data
/// GetPassphraseCallbackMethod is null and aStream constrains encrypted key ///
public Deserialize ( byte aBytes ) : ISshKey
aBytes byte byte[] containing SSH key data
Результат ISshKey
        public ISshKey Deserialize(byte[] aBytes)
        {
            using (MemoryStream stream = new MemoryStream(aBytes)) {
            return (ISshKey)Deserialize(stream);
              }
        }

Same methods

KeyFormatter::Deserialize ( Stream aStream ) : object