/// <summary>
 /// Creates parameters for the CKM_RSA_AES_KEY_WRAP mechanism
 /// </summary>
 /// <param name='aesKeyBits'>Length of the temporary AES key in bits</param>
 /// <param name='oaepParams'>Parameters of the temporary AES key wrapping</param>
 /// <returns>Parameters for the CKM_RSA_AES_KEY_WRAP mechanism</returns>
 public ICkRsaAesKeyWrapParams CreateCkRsaAesKeyWrapParams(ulong aesKeyBits, ICkRsaPkcsOaepParams oaepParams)
 {
     return _factory.CreateCkRsaAesKeyWrapParams(aesKeyBits, oaepParams);
 }