/// <summary>
 /// Creates parameters for the CKM_RC2_CBC and CKM_RC2_CBC_PAD mechanisms
 /// </summary>
 /// <param name='effectiveBits'>The effective number of bits in the RC2 search space</param>
 /// <param name='iv'>The initialization vector (IV) for cipher block chaining mode</param>
 /// <returns>Parameters for the CKM_RC2_CBC and CKM_RC2_CBC_PAD mechanisms</returns>
 public ICkRc2CbcParams CreateCkRc2CbcParams(ulong effectiveBits, byte[] iv)
 {
     return _factory.CreateCkRc2CbcParams(effectiveBits, iv);
 }