Source File
client_certificate.go
Belonging Package
github.com/pion/dtls/v2/pkg/crypto/clientcertificate
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>// SPDX-License-Identifier: MIT// Package clientcertificate provides all the support Client Certificate typespackage clientcertificate// Type is used to communicate what// type of certificate is being transported//// https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-2type Type byte// ClientCertificateType enumsconst (RSASign Type = 1ECDSASign Type = 64)// Types returns all valid ClientCertificate Typesfunc () map[Type]bool {return map[Type]bool{RSASign: true,ECDSASign: true,}}
![]() |
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. |