|  | @@ -1,33 +1,54 @@
 | 
	
		
			
				|  |  |  #if FEATURE_HMAC_MD5
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -using Renci.SshNet.Common;
 | 
	
		
			
				|  |  | +using System.Security.Cryptography;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  namespace Renci.SshNet.Security.Cryptography
 | 
	
		
			
				|  |  |  {
 | 
	
		
			
				|  |  |      /// <summary>
 | 
	
		
			
				|  |  | -    /// Computes a Hash-based Message Authentication Code (HMAC) by using the MD5 hash function.
 | 
	
		
			
				|  |  | +    /// Computes a Hash-based Message Authentication Code (HMAC) by using the <see cref="MD5"/> hash function.
 | 
	
		
			
				|  |  |      /// </summary>
 | 
	
		
			
				|  |  |      public class HMACMD5 : System.Security.Cryptography.HMACMD5
 | 
	
		
			
				|  |  |      {
 | 
	
		
			
				|  |  |          private readonly int _hashSize;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +        /// <summary>
 | 
	
		
			
				|  |  | +        /// Initializes a <see cref="HMACMD5"/> with the specified key.
 | 
	
		
			
				|  |  | +        /// </summary>
 | 
	
		
			
				|  |  | +        /// <param name="key">The key.</param>
 | 
	
		
			
				|  |  |          public HMACMD5(byte[] key)
 | 
	
		
			
				|  |  |              : base(key)
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |              _hashSize = base.HashSize;
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +        /// <summary>
 | 
	
		
			
				|  |  | +        /// Initializes a <see cref="HMACSHA1"/> with the specified key and size of the computed hash code.
 | 
	
		
			
				|  |  | +        /// </summary>
 | 
	
		
			
				|  |  | +        /// <param name="key">The key.</param>
 | 
	
		
			
				|  |  | +        /// <param name="hashSize">The size, in bits, of the computed hash code.</param>
 | 
	
		
			
				|  |  |          public HMACMD5(byte[] key, int hashSize)
 | 
	
		
			
				|  |  |              : base(key)
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |              _hashSize = hashSize;
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +        /// <summary>
 | 
	
		
			
				|  |  | +        /// Gets the size, in bits, of the computed hash code.
 | 
	
		
			
				|  |  | +        /// </summary>
 | 
	
		
			
				|  |  | +        /// <value>
 | 
	
		
			
				|  |  | +        /// The size, in bits, of the computed hash code.
 | 
	
		
			
				|  |  | +        /// </value>
 | 
	
		
			
				|  |  |          public override int HashSize
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |              get { return _hashSize; }
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +        /// <summary>
 | 
	
		
			
				|  |  | +        /// Finalizes the hash computation after the last data is processed by the cryptographic stream object.
 | 
	
		
			
				|  |  | +        /// </summary>
 | 
	
		
			
				|  |  | +        /// <returns>
 | 
	
		
			
				|  |  | +        /// The computed hash code.
 | 
	
		
			
				|  |  | +        /// </returns>
 | 
	
		
			
				|  |  |          protected override byte[] HashFinal()
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |              var hash = base.HashFinal();
 |