• Stars
    star
    556
  • Rank 77,449 (Top 2 %)
  • Language
    Go
  • License
    MIT License
  • Created over 5 years ago
  • Updated about 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

DTLS 1.2 Server/Client implementation for Go


Pion DTLS

A Go implementation of DTLS

Pion DTLS Sourcegraph Widget Slack Widget
GitHub Workflow Status Go Reference Coverage Status Go Report Card License: MIT


Native DTLS 1.2 implementation in the Go programming language.

A long term goal is a professional security review, and maybe an inclusion in stdlib.

RFCs

Implemented

Goals/Progress

This will only be targeting DTLS 1.2, and the most modern/common cipher suites. We would love contributions that fall under the 'Planned Features' and any bug fixes!

Current features

  • DTLS 1.2 Client/Server
  • Key Exchange via ECDHE(curve25519, nistp256, nistp384) and PSK
  • Packet loss and re-ordering is handled during handshaking
  • Key export (RFC 5705)
  • Serialization and Resumption of sessions
  • Extended Master Secret extension (RFC 7627)
  • ALPN extension (RFC 7301)

Supported ciphers

ECDHE
  • TLS_ECDHE_ECDSA_WITH_AES_128_CCM (RFC 6655)
  • TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8 (RFC 6655)
  • TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 (RFC 5289)
  • TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (RFC 5289)
  • TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 (RFC 5289)
  • TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (RFC 5289)
  • TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA (RFC 8422)
  • TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA (RFC 8422)
PSK
ECDHE & PSK
  • TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256 (RFC 5489)

Planned Features

  • Chacha20Poly1305

Excluded Features

  • DTLS 1.0
  • Renegotiation
  • Compression

Using

This library needs at least Go 1.13, and you should have Go modules enabled.

Pion DTLS

For a DTLS 1.2 Server that listens on 127.0.0.1:4444

go run examples/listen/selfsign/main.go

For a DTLS 1.2 Client that connects to 127.0.0.1:4444

go run examples/dial/selfsign/main.go

OpenSSL

Pion DTLS can connect to itself and OpenSSL.

  // Generate a certificate
  openssl ecparam -out key.pem -name prime256v1 -genkey
  openssl req -new -sha256 -key key.pem -out server.csr
  openssl x509 -req -sha256 -days 365 -in server.csr -signkey key.pem -out cert.pem

  // Use with examples/dial/selfsign/main.go
  openssl s_server -dtls1_2 -cert cert.pem -key key.pem -accept 4444

  // Use with examples/listen/selfsign/main.go
  openssl s_client -dtls1_2 -connect 127.0.0.1:4444 -debug -cert cert.pem -key key.pem

Using with PSK

Pion DTLS also comes with examples that do key exchange via PSK

Pion DTLS

go run examples/listen/psk/main.go
go run examples/dial/psk/main.go

OpenSSL

  // Use with examples/dial/psk/main.go
  openssl s_server -dtls1_2 -accept 4444 -nocert -psk abc123 -cipher PSK-AES128-CCM8

  // Use with examples/listen/psk/main.go
  openssl s_client -dtls1_2 -connect 127.0.0.1:4444 -psk abc123 -cipher PSK-AES128-CCM8

Community

Pion has an active community on the Slack.

Follow the Pion Twitter for project updates and important WebRTC news.

We are always looking to support your projects. Please reach out if you have something to build! If you need commercial support or don't want to use public methods you can contact us at [email protected]

Contributing

Check out the contributing wiki to join the group of amazing people making this project possible: AUTHORS.txt

License

MIT License - see LICENSE for full text

More Repositories

1

webrtc

Pure Go implementation of the WebRTC API
Go
12,568
star
2

turn

Pion TURN, an API for building TURN clients and servers
Go
1,674
star
3

example-webrtc-applications

Examples of WebRTC applications that are large, or use 3rd party libraries
Go
935
star
4

awesome-pion

A curated list of awesome things related to Pion
Shell
678
star
5

stun

A Go implementation of STUN
Go
552
star
6

mediadevices

Go implementation of the MediaDevices API.
Go
503
star
7

ice

A Go implementation of ICE
Go
389
star
8

opus

Pure Go implementation of Opus
Go
370
star
9

rtp

A Go implementation of RTP
Go
320
star
10

rtwatch

Watch videos with friends using WebRTC, let the server do the pausing and seeking.
Go
284
star
11

sctp

A Go implementation of SCTP
Go
208
star
12

offline-browser-communication

Demonstration of a browser connecting to Pion WebRTC without a signaling server.
Go
178
star
13

mdns

Pure Go implementation of Multicast DNS
Go
176
star
14

quic

A Go implementation of the QUIC API for Peer-to-peer and Client-to-Server Connections
Go
176
star
15

rtsp-bench

RTSP -> WebRTC Server that generates a CPU Usage report
Go
158
star
16

rtcp

A Go implementation of RTCP
Go
140
star
17

sdp

A Go implementation of the SDP
Go
136
star
18

srtp

A Go implementation of SRTP
Go
106
star
19

interceptor

Pluggable RTP/RTCP processors for building real time communication
Go
96
star
20

obs-wormhole

Supercharge OBS with WebRTC. Remote WebRTC Sources and Serverless Broadcasting
Go
95
star
21

datachannel

A Go implementation of WebRTC Data Channels
Go
75
star
22

transport

Transport testing for Pion
Go
63
star
23

explainer

Explainer parses WebRTC Offers/Answers then provides summaries and suggestions
Go
43
star
24

11LiveChat

Another one-one live chatroom using pion webrtc with sfu mode
Go
40
star
25

udp

Please use github.com/pion/transport/v2/udp instead
Go
35
star
26

demo-conference

A simple web conferencing application built using Pion
HTML
29
star
27

webrtc-voicemail

Voicemail.... for the web! Create voicemails via WebRTC and Transcribe them.
Go
28
star
28

webrtc-zero-downtime-restart

A playground to make WebRTC easier to deploy, safer and more robust
Go
21
star
29

webrtc-v3-design

EXPERIMENTAL - new API proposals and discussions
Go
17
star
30

signaler

The Pion Signaler
Go
15
star
31

dcnet

net interfaces over DataChannels
Go
14
star
32

portmap

An implementation of UPnP-IGD, NAT-PMP and PCP for configuring port-forwarding
Go
13
star
33

codec

Go wrappers of multiple codecs to be go gettable
Go
7
star
34

logging

The logging library used by Pion
Go
7
star
35

.goassets

Asset files automatically deployed to Go package repositories
Shell
7
star
36

turnc

RFC 5766 TURN client implementation in go
Go
6
star
37

producer

File to webrtc.Track playback
Go
5
star
38

website

Pion public website
HTML
5
star
39

talks

Content for talks given by Pion WebRTC developers
CSS
5
star
40

pion-browser-client

Browser Client for Pion
JavaScript
5
star
41

zapion

uber-go/zap âš¡ backended pion logger
Go
4
star
42

msapi

media stream api for webrtc !
Go
4
star
43

randutil

Helper library for cryptographic and mathmatical randoms
Go
4
star
44

pkg

Shared Go libraries used by Pion products
Go
3
star
45

simulnet

A net implementation that enables simulations
2
star
46

ci-sandbox

CI testing sandbox
Go
1
star
47

ion-admin

This is ion's manager
1
star
48

.github

Default community health files
1
star
49

rtpio

Go
1
star