/*
 *  Copyright 2018 The WebRTC project authors. All Rights Reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#import "RTCCryptoOptions.h"

@implementation RTC_OBJC_TYPE (RTCCryptoOptions)

@synthesize srtpEnableGcmCryptoSuites = _srtpEnableGcmCryptoSuites;
@synthesize srtpPreferGcmCryptoSuites = _srtpPreferGcmCryptoSuites;
@synthesize srtpEnableAes128Sha1_32CryptoCipher =
    _srtpEnableAes128Sha1_32CryptoCipher;
@synthesize srtpEnableAes128Sha1_80CryptoCipher =
    _srtpEnableAes128Sha1_80CryptoCipher;
@synthesize srtpEnableEncryptedRtpHeaderExtensions =
    _srtpEnableEncryptedRtpHeaderExtensions;
@synthesize sframeRequireFrameEncryption = _sframeRequireFrameEncryption;

- (instancetype)
         initWithSrtpEnableGcmCryptoSuites:(BOOL)srtpEnableGcmCryptoSuites
                 srtpPreferGcmCryptoSuites:(BOOL)srtpPreferGcmCryptoSuites
       srtpEnableAes128Sha1_32CryptoCipher:
           (BOOL)srtpEnableAes128Sha1_32CryptoCipher
       srtpEnableAes128Sha1_80CryptoCipher:
           (BOOL)srtpEnableAes128Sha1_80CryptoCipher
    srtpEnableEncryptedRtpHeaderExtensions:
        (BOOL)srtpEnableEncryptedRtpHeaderExtensions
              sframeRequireFrameEncryption:(BOOL)sframeRequireFrameEncryption {
  self = [super init];
  if (self) {
    _srtpEnableGcmCryptoSuites = srtpEnableGcmCryptoSuites;
    _srtpPreferGcmCryptoSuites = srtpPreferGcmCryptoSuites;
    _srtpEnableAes128Sha1_32CryptoCipher = srtpEnableAes128Sha1_32CryptoCipher;
    _srtpEnableAes128Sha1_80CryptoCipher = srtpEnableAes128Sha1_80CryptoCipher;
    _srtpEnableEncryptedRtpHeaderExtensions =
        srtpEnableEncryptedRtpHeaderExtensions;
    _sframeRequireFrameEncryption = sframeRequireFrameEncryption;
  }
  return self;
}

@end
