/// <summary>
 /// Creates parameters for the CKM_RC5_CBC and CKM_RC5_CBC_PAD mechanisms
 /// </summary>
 /// <param name='wordsize'>Wordsize of RC5 cipher in bytes</param>
 /// <param name='rounds'>Number of rounds of RC5 encipherment</param>
 /// <param name='iv'>Initialization vector (IV) for CBC encryption</param>
 /// <returns>Parameters for the CKM_RC5_CBC and CKM_RC5_CBC_PAD mechanisms</returns>
 public ICkRc5CbcParams CreateCkRc5CbcParams(ulong wordsize, ulong rounds, byte[] iv)
 {
     return _factory.CreateCkRc5CbcParams(wordsize, rounds, iv);
 }