|  | @@ -25,6 +25,11 @@ namespace Renci.SshNet.Common
 | 
	
		
			
				|  |  |          /// </summary>
 | 
	
		
			
				|  |  |          public byte[] HostKey { get; private set; }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +        /// <summary>
 | 
	
		
			
				|  |  | +        /// Gets the host key name.
 | 
	
		
			
				|  |  | +        /// </summary>
 | 
	
		
			
				|  |  | +        public string HostKeyName{ get; private set; }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |          /// <summary>
 | 
	
		
			
				|  |  |          /// Gets the finger print.
 | 
	
		
			
				|  |  |          /// </summary>
 | 
	
	
		
			
				|  | @@ -48,6 +53,8 @@ namespace Renci.SshNet.Common
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |              this.HostKey = host.Data;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +            this.HostKeyName = host.Name;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |              this.KeyLength = host.Key.KeyLength;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |              using (var md5 = new MD5Hash())
 |