Source File
tls_ecdhe_rsa_with_aes_256_gcm_sha384.go
Belonging Package
github.com/pion/dtls/v2/internal/ciphersuite
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>// SPDX-License-Identifier: MITpackage ciphersuiteimport// TLSEcdheRsaWithAes256GcmSha384 implements the TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 CipherSuitetype TLSEcdheRsaWithAes256GcmSha384 struct {TLSEcdheEcdsaWithAes256GcmSha384}// CertificateType returns what type of certificate this CipherSuite exchangesfunc ( *TLSEcdheRsaWithAes256GcmSha384) () clientcertificate.Type {return clientcertificate.RSASign}// ID returns the ID of the CipherSuitefunc ( *TLSEcdheRsaWithAes256GcmSha384) () ID {return TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384}func ( *TLSEcdheRsaWithAes256GcmSha384) () string {return "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384"}
![]() |
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. |