summaryrefslogtreecommitdiff
path: root/vendor/github.com/pion/sctp/param_state_cookie.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/pion/sctp/param_state_cookie.go')
-rw-r--r--vendor/github.com/pion/sctp/param_state_cookie.go46
1 files changed, 46 insertions, 0 deletions
diff --git a/vendor/github.com/pion/sctp/param_state_cookie.go b/vendor/github.com/pion/sctp/param_state_cookie.go
new file mode 100644
index 0000000..9681267
--- /dev/null
+++ b/vendor/github.com/pion/sctp/param_state_cookie.go
@@ -0,0 +1,46 @@
+package sctp
+
+import (
+ "crypto/rand"
+ "fmt"
+)
+
+type paramStateCookie struct {
+ paramHeader
+ cookie []byte
+}
+
+func newRandomStateCookie() (*paramStateCookie, error) {
+ randCookie := make([]byte, 32)
+ _, err := rand.Read(randCookie)
+ // crypto/rand.Read returns n == len(b) if and only if err == nil.
+ if err != nil {
+ return nil, err
+ }
+
+ s := &paramStateCookie{
+ cookie: randCookie,
+ }
+
+ return s, nil
+}
+
+func (s *paramStateCookie) marshal() ([]byte, error) {
+ s.typ = stateCookie
+ s.raw = s.cookie
+ return s.paramHeader.marshal()
+}
+
+func (s *paramStateCookie) unmarshal(raw []byte) (param, error) {
+ err := s.paramHeader.unmarshal(raw)
+ if err != nil {
+ return nil, err
+ }
+ s.cookie = s.raw
+ return s, nil
+}
+
+// String makes paramStateCookie printable
+func (s *paramStateCookie) String() string {
+ return fmt.Sprintf("%s: %s", s.paramHeader, s.cookie)
+}