Documentation
¶
Index ¶
- Variables
- func Fingerprint(cert *x509.Certificate, algo HashAlgorithm) (string, error)
- func GenerateSelfSigned() (*x509.Certificate, crypto.PrivateKey, error)
- type CipherSuiteID
- type ClientAuthType
- type Config
- type Conn
- func (c *Conn) Close() error
- func (c *Conn) Export() (*State, net.Conn, error)
- func (c *Conn) ExportKeyingMaterial(label string, context []byte, length int) ([]byte, error)
- func (c *Conn) LocalAddr() net.Addr
- func (c *Conn) Read(p []byte) (n int, err error)
- func (c *Conn) RemoteAddr() net.Addr
- func (c *Conn) RemoteCertificate() *x509.Certificate
- func (c *Conn) SelectedSRTPProtectionProfile() (SRTPProtectionProfile, bool)
- func (c *Conn) SetDeadline(t time.Time) error
- func (c *Conn) SetReadDeadline(t time.Time) error
- func (c *Conn) SetWriteDeadline(t time.Time) error
- func (c *Conn) Write(p []byte) (int, error)
- type HashAlgorithm
- type Listener
- type PSKCallback
- type SRTPProtectionProfile
- type State
Constants ¶
This section is empty.
Variables ¶
var (
ErrConnClosed = errors.New("dtls: conn is closed")
)
Typed errors
Functions ¶
func Fingerprint ¶
func Fingerprint(cert *x509.Certificate, algo HashAlgorithm) (string, error)
Fingerprint creates a fingerprint for a certificate using the specified hash algorithm
func GenerateSelfSigned ¶
func GenerateSelfSigned() (*x509.Certificate, crypto.PrivateKey, error)
GenerateSelfSigned creates a self-signed certificate
Types ¶
type CipherSuiteID ¶
type CipherSuiteID uint16
CipherSuiteID is an ID for our supported CipherSuites
const ( // AES-128-GCM-SHA256 TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 CipherSuiteID = 0xc02b TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 CipherSuiteID = 0xc02f // AES-256-CBC-SHA TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA CipherSuiteID = 0xc00a TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA CipherSuiteID = 0x0035 )
Supported Cipher Suites
type ClientAuthType ¶
type ClientAuthType int
ClientAuthType declares the policy the server will follow for TLS Client Authentication.
const ( NoClientCert ClientAuthType = iota RequestClientCert RequireAnyClientCert )
ClientAuthType enums
type Config ¶
type Config struct { // Certificates contains certificate chain to present to the other side of the connection. // Server MUST set this if PSK is non-nil // client SHOULD sets this so CertificateRequests can be handled if PSK is non-nil Certificate *x509.Certificate // PrivateKey contains matching private key for the certificate // only ECDSA is supported PrivateKey crypto.PrivateKey // CipherSuites is a list of supported cipher suites. // If CipherSuites is nil, a default list is used CipherSuites []CipherSuiteID // SRTPProtectionProfiles are the supported protection profiles // Clients will send this via use_srtp and assert that the server properly responds // Servers will assert that clients send one of these profiles and will respond as needed SRTPProtectionProfiles []SRTPProtectionProfile // ClientAuth determines the server's policy for // TLS Client Authentication. The default is NoClientCert. ClientAuth ClientAuthType // FlightInterval controls how often we send outbound handshake messages // defaults to time.Second FlightInterval time.Duration // PSK sets the pre-shared key used by this DTLS connection // If PSK is non-nil only PSK CipherSuites will be used PSK PSKCallback PSKIdentityHint []byte LoggerFactory logging.LoggerFactory }
Config is used to configure a DTLS client or server. After a Config is passed to a DTLS function it must not be modified.
type Conn ¶
type Conn struct {
// contains filtered or unexported fields
}
Conn represents a DTLS connection
func (*Conn) Export ¶
Export extracts dtls state and inner connection from an already handshaked dtls conn
func (*Conn) ExportKeyingMaterial ¶
ExportKeyingMaterial from https://tools.ietf.org/html/rfc5705 This allows protocols to use DTLS for key establishment, but then use some of the keying material for their own purposes
func (*Conn) RemoteCertificate ¶
func (c *Conn) RemoteCertificate() *x509.Certificate
RemoteCertificate exposes the remote certificate
func (*Conn) SelectedSRTPProtectionProfile ¶
func (c *Conn) SelectedSRTPProtectionProfile() (SRTPProtectionProfile, bool)
SelectedSRTPProtectionProfile returns the selected SRTPProtectionProfile
func (*Conn) SetReadDeadline ¶
SetReadDeadline is a stub
func (*Conn) SetWriteDeadline ¶
SetWriteDeadline is a stub
type HashAlgorithm ¶
type HashAlgorithm uint16
HashAlgorithm is used to indicate the hash algorithm used https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-18
const ( // HashAlgorithmMD2 HashAlgorithm = 0 // Blacklisted HashAlgorithmMD5 HashAlgorithm = 1 // Blacklisted HashAlgorithmSHA1 HashAlgorithm = 2 // Blacklisted HashAlgorithmSHA224 HashAlgorithm = 3 HashAlgorithmSHA256 HashAlgorithm = 4 HashAlgorithmSHA384 HashAlgorithm = 5 HashAlgorithmSHA512 HashAlgorithm = 6 )
Supported hash hash algorithms
func HashAlgorithmString ¶
func HashAlgorithmString(s string) (HashAlgorithm, error)
HashAlgorithmString allows looking up a HashAlgorithm by it's string representation
func (HashAlgorithm) String ¶
func (h HashAlgorithm) String() string
String makes HashAlgorithm printable
type Listener ¶
type Listener struct {
// contains filtered or unexported fields
}
Listener represents a DTLS listener
func (*Listener) Accept ¶
Accept waits for and returns the next connection to the listener. You have to either close or read on all connection that are created.
type PSKCallback ¶
PSKCallback is called once we have the remote's PSKIdentityHint. If the remote provided none it will be nil
type SRTPProtectionProfile ¶
type SRTPProtectionProfile uint16
SRTPProtectionProfile defines the parameters and options that are in effect for the SRTP processing https://tools.ietf.org/html/rfc5764#section-4.1.2
const (
SRTP_AES128_CM_HMAC_SHA1_80 SRTPProtectionProfile = 0x0001 // nolint
)
type State ¶
type State struct {
// contains filtered or unexported fields
}
State holds the dtls connection state and implements both encoding.BinaryMarshaler and encoding.BinaryUnmarshaler
func (*State) MarshalBinary ¶
MarshalBinary is a binary.BinaryMarshaler.MarshalBinary implementation
func (*State) UnmarshalBinary ¶
UnmarshalBinary is a binary.BinaryUnmarshaler.UnmarshalBinary implementation
Source Files
¶
- alert.go
- application_data.go
- change_cipher_spec.go
- cipher_suite.go
- cipher_suite_tls_ecdhe_ecdsa_with_aes_128_gcm_sha256.go
- cipher_suite_tls_ecdhe_ecdsa_with_aes_256_cbc_sha.go
- cipher_suite_tls_ecdhe_rsa_with_aes_128_gcm_sha256.go
- cipher_suite_tls_ecdhe_rsa_with_aes_256_cbc_sha.go
- client_certificate_type.go
- client_handlers.go
- compression_method.go
- config.go
- conn.go
- content.go
- crypto.go
- crypto_cbc.go
- crypto_gcm.go
- curve_type.go
- errors.go
- extension.go
- extension_supported_elliptic_curves.go
- extension_supported_point_formats.go
- extension_supported_signature_algorithms.go
- extension_use_srtp.go
- fingerprint.go
- flight.go
- fragment_buffer.go
- handshake.go
- handshake_cache.go
- handshake_header.go
- handshake_message_certificate.go
- handshake_message_certificate_request.go
- handshake_message_certificate_verify.go
- handshake_message_client_hello.go
- handshake_message_client_key_exchange.go
- handshake_message_finished.go
- handshake_message_hello_verify_request.go
- handshake_message_server_hello.go
- handshake_message_server_hello_done.go
- handshake_message_server_key_exchange.go
- handshake_random.go
- hash_algorithm.go
- listener.go
- named_curve.go
- prf.go
- record_layer.go
- record_layer_header.go
- resume.go
- server_handlers.go
- signature_algorithm.go
- signature_hash_algorithm.go
- srtp_protection_profile.go
- state.go
- util.go
Directories
¶
Path | Synopsis |
---|---|
Package e2e contains end to end tests for pion/dtls
|
Package e2e contains end to end tests for pion/dtls |
examples
|
|
internal
|
|
crypto/ccm
Package ccm implements a CCM, Counter with CBC-MAC as per RFC 3610.
|
Package ccm implements a CCM, Counter with CBC-MAC as per RFC 3610. |