/// <summary>
 /// Creates parameters for the CKM_PBE mechanisms and the CKM_PBA_SHA1_WITH_SHA1_HMAC mechanism
 /// </summary>
 /// <param name='initVector'>8-byte initialization vector (IV), if an IV is required</param>
 /// <param name='password'>Password to be used in the PBE key generation</param>
 /// <param name='salt'>Salt to be used in the PBE key generation</param>
 /// <param name='iteration'>Number of iterations required for the generation</param>
 /// <returns>Parameters for the CKM_PBE mechanisms and the CKM_PBA_SHA1_WITH_SHA1_HMAC mechanism</returns>
 public ICkPbeParams CreateCkPbeParams(byte[] initVector, byte[] password, byte[] salt, ulong iteration)
 {
     return _factory.CreateCkPbeParams(initVector, password, salt, iteration);
 }