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

package ciphersuite

import 

// TLSEcdheRsaWithAes256CbcSha implements the TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA CipherSuite
type TLSEcdheRsaWithAes256CbcSha struct {
	TLSEcdheEcdsaWithAes256CbcSha
}

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

// ID returns the ID of the CipherSuite
func ( *TLSEcdheRsaWithAes256CbcSha) () ID {
	return TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
}

func ( *TLSEcdheRsaWithAes256CbcSha) () string {
	return "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA"
}