|  | @@ -1,5 +1,4 @@
 | 
											
												
													
														|  |  using System.Collections.Generic;
 |  |  using System.Collections.Generic;
 | 
											
												
													
														|  | -using System.Linq;
 |  | 
 | 
											
												
													
														|  |  using Renci.SshNet.Common;
 |  |  using Renci.SshNet.Common;
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |  namespace Renci.SshNet.Security
 |  |  namespace Renci.SshNet.Security
 | 
											
										
											
												
													
														|  | @@ -9,7 +8,6 @@ namespace Renci.SshNet.Security
 | 
											
												
													
														|  |      /// </summary>
 |  |      /// </summary>
 | 
											
												
													
														|  |      public class KeyHostAlgorithm : HostAlgorithm
 |  |      public class KeyHostAlgorithm : HostAlgorithm
 | 
											
												
													
														|  |      {
 |  |      {
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  |          /// <summary>
 |  |          /// <summary>
 | 
											
												
													
														|  |          /// Gets the key.
 |  |          /// Gets the key.
 | 
											
												
													
														|  |          /// </summary>
 |  |          /// </summary>
 | 
											
										
											
												
													
														|  | @@ -85,11 +83,10 @@ namespace Renci.SshNet.Security
 | 
											
												
													
														|  |          {
 |  |          {
 | 
											
												
													
														|  |              public BigInteger[] Keys { get; private set; }
 |  |              public BigInteger[] Keys { get; private set; }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | -            public string Name { get; private set; }
 |  | 
 | 
											
												
													
														|  | 
 |  | +            private string Name { get; set; }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |              public SshKeyData()
 |  |              public SshKeyData()
 | 
											
												
													
														|  |              {
 |  |              {
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  |              }
 |  |              }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |              public SshKeyData(string name, params BigInteger[] keys)
 |  |              public SshKeyData(string name, params BigInteger[] keys)
 | 
											
										
											
												
													
														|  | @@ -127,7 +124,7 @@ namespace Renci.SshNet.Security
 | 
											
												
													
														|  |              /// <value>
 |  |              /// <value>
 | 
											
												
													
														|  |              /// The name of the algorithm.
 |  |              /// The name of the algorithm.
 | 
											
												
													
														|  |              /// </value>
 |  |              /// </value>
 | 
											
												
													
														|  | -            public string AlgorithmName { get; private set; }
 |  | 
 | 
											
												
													
														|  | 
 |  | +            private string AlgorithmName { get; set; }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |              /// <summary>
 |  |              /// <summary>
 | 
											
												
													
														|  |              /// Gets or sets the signature.
 |  |              /// Gets or sets the signature.
 | 
											
										
											
												
													
														|  | @@ -139,7 +136,6 @@ namespace Renci.SshNet.Security
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |              public SignatureKeyData()
 |  |              public SignatureKeyData()
 | 
											
												
													
														|  |              {
 |  |              {
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  |              }
 |  |              }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |              public SignatureKeyData(string name, byte[] signature)
 |  |              public SignatureKeyData(string name, byte[] signature)
 |