/// <summary>
 /// Creates parameters for the CKM_RC5_ECB and CKM_RC5_MAC mechanisms
 /// </summary>
 /// <param name='wordsize'>Wordsize of RC5 cipher in bytes</param>
 /// <param name='rounds'>Number of rounds of RC5 encipherment</param>
 /// <returns>Parameters for the CKM_RC5_ECB and CKM_RC5_MAC mechanisms</returns>
 public ICkRc5Params CreateCkRc5Params(ulong wordsize, ulong rounds)
 {
     return _factory.CreateCkRc5Params(wordsize, rounds);
 }