Source File
signature.go
Belonging Package
github.com/pion/dtls/v3/pkg/crypto/signature
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>// SPDX-License-Identifier: MIT// Package signature provides our implemented Signature Algorithmspackage signature// Algorithm as defined in TLS 1.2// https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-16type Algorithm uint16// SignatureAlgorithm enums.const (Anonymous Algorithm = 0RSA Algorithm = 1ECDSA Algorithm = 3Ed25519 Algorithm = 7)// Algorithms returns all implemented Signature Algorithms.func () map[Algorithm]struct{} {return map[Algorithm]struct{}{Anonymous: {},RSA: {},ECDSA: {},Ed25519: {},}}
![]() |
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. |