/// <summary>
 /// Creates parameters for the CKM_RC5_MAC_GENERAL mechanism
 /// </summary>
 /// <param name='wordsize'>Wordsize of RC5 cipher in bytes</param>
 /// <param name='rounds'>Number of rounds of RC5 encipherment</param>
 /// <param name='macLength'>Length of the MAC produced, in bytes</param>
 /// <returns>Parameters for the CKM_RC5_MAC_GENERAL mechanism</returns>
 public ICkRc5MacGeneralParams CreateCkRc5MacGeneralParams(ulong wordsize, ulong rounds, ulong macLength)
 {
     return _factory.CreateCkRc5MacGeneralParams(wordsize, rounds, macLength);
 }