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