/// <summary> /// Initializes a new instance of the CkEcdhAesKeyWrapParams class. /// </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> public CkEcdhAesKeyWrapParams(ulong aesKeyBits, ulong kdf, byte[] sharedData) { if (Platform.UnmanagedLongSize == 4) { if (Platform.StructPackingSize == 0) { _params40 = new HighLevelAPI40.MechanismParams.CkEcdhAesKeyWrapParams(Convert.ToUInt32(aesKeyBits), Convert.ToUInt32(kdf), sharedData); } else { _params41 = new HighLevelAPI41.MechanismParams.CkEcdhAesKeyWrapParams(Convert.ToUInt32(aesKeyBits), Convert.ToUInt32(kdf), sharedData); } } else { if (Platform.StructPackingSize == 0) { _params80 = new HighLevelAPI80.MechanismParams.CkEcdhAesKeyWrapParams(aesKeyBits, kdf, sharedData); } else { _params81 = new HighLevelAPI81.MechanismParams.CkEcdhAesKeyWrapParams(aesKeyBits, kdf, sharedData); } } }
/// <summary> /// Disposes object /// </summary> /// <param name="disposing">Flag indicating whether managed resources should be disposed</param> protected virtual void Dispose(bool disposing) { if (!this._disposed) { if (disposing) { // Dispose managed objects if (_params40 != null) { _params40.Dispose(); _params40 = null; } if (_params41 != null) { _params41.Dispose(); _params41 = null; } if (_params80 != null) { _params80.Dispose(); _params80 = null; } if (_params81 != null) { _params81.Dispose(); _params81 = null; } } // Dispose unmanaged objects _disposed = true; } }