Source File
tls_ecdhe_rsa_with_aes_128_gcm_sha256.go
Belonging Package
github.com/pion/dtls/v2/internal/ciphersuite
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>// SPDX-License-Identifier: MITpackage ciphersuiteimport// TLSEcdheRsaWithAes128GcmSha256 implements the TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 CipherSuitetype TLSEcdheRsaWithAes128GcmSha256 struct {TLSEcdheEcdsaWithAes128GcmSha256}// CertificateType returns what type of certificate this CipherSuite exchangesfunc ( *TLSEcdheRsaWithAes128GcmSha256) () clientcertificate.Type {return clientcertificate.RSASign}// ID returns the ID of the CipherSuitefunc ( *TLSEcdheRsaWithAes128GcmSha256) () ID {return TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256}func ( *TLSEcdheRsaWithAes128GcmSha256) () string {return "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256"}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |