// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
// SPDX-License-Identifier: MIT

package ciphersuite

import 

// TLSEcdheRsaWithAes256GcmSha384 implements the TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 CipherSuite
type TLSEcdheRsaWithAes256GcmSha384 struct {
	TLSEcdheEcdsaWithAes256GcmSha384
}

// CertificateType returns what type of certificate this CipherSuite exchanges
func ( *TLSEcdheRsaWithAes256GcmSha384) () clientcertificate.Type {
	return clientcertificate.RSASign
}

// ID returns the ID of the CipherSuite
func ( *TLSEcdheRsaWithAes256GcmSha384) () ID {
	return TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
}

func ( *TLSEcdheRsaWithAes256GcmSha384) () string {
	return "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384"
}