summary refs log tree commit diff
path: root/crypto/src/tls/TlsSessionImpl.cs
blob: a4eb6b94a1d1b3fd6199187b6112de708253c53d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
using System;

using Org.BouncyCastle.Utilities;

namespace Org.BouncyCastle.Tls
{
    internal class TlsSessionImpl
        : TlsSession
    {
        private readonly byte[] m_sessionID;
        private readonly SessionParameters m_sessionParameters;
        private bool m_resumable;

        internal TlsSessionImpl(byte[] sessionID, SessionParameters sessionParameters)
        {
            if (sessionID == null)
                throw new ArgumentNullException("sessionID");
            if (sessionID.Length > 32)
                throw new ArgumentException("cannot be longer than 32 bytes", "sessionID");

            this.m_sessionID = Arrays.Clone(sessionID);
            this.m_sessionParameters = sessionParameters;
            this.m_resumable = sessionID.Length > 0 && null != sessionParameters;
        }

        public SessionParameters ExportSessionParameters()
        {
            lock (this)
            {
                return m_sessionParameters == null ? null : m_sessionParameters.Copy();
            }
        }

        public byte[] SessionID
        {
            get { lock (this) return m_sessionID; }
        }

        public void Invalidate()
        {
            lock (this)
            {
                this.m_resumable = false;
            }
        }

        public bool IsResumable
        {
            get { lock (this) return m_resumable; }
        }
    }
}