/// <summary>
 /// Creates parameters for the CKM_ECDH_AES_KEY_WRAP mechanism
 /// </summary>
 /// <param name="aesKeyBits">Length of the temporary AES key in bits</param>
 /// <param name="kdf">Key derivation function used on the shared secret value to generate AES key (CKD)</param>
 /// <param name="sharedData">Data shared between the two parties</param>
 /// <returns>Parameters for the CKM_ECDH_AES_KEY_WRAP mechanism</returns>
 public ICkEcdhAesKeyWrapParams CreateCkEcdhAesKeyWrapParams(ulong aesKeyBits, ulong kdf, byte[] sharedData)
 {
     return _factory.CreateCkEcdhAesKeyWrapParams(aesKeyBits, kdf, sharedData);
 }