summaryrefslogtreecommitdiffstats
path: root/bcprov/src/main/java/org/bouncycastle/crypto/tls/TlsSessionImpl.java
blob: 615c4424de8222cd5cd00f1ed59c0bec485761d5 (plain)
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
package org.bouncycastle.crypto.tls;

import org.bouncycastle.util.Arrays;

class TlsSessionImpl implements TlsSession
{
    final byte[] sessionID;
    SessionParameters sessionParameters;

    TlsSessionImpl(byte[] sessionID, SessionParameters sessionParameters)
    {
        if (sessionID == null)
        {
            throw new IllegalArgumentException("'sessionID' cannot be null");
        }
        if (sessionID.length < 1 || sessionID.length > 32)
        {
            throw new IllegalArgumentException("'sessionID' must have length between 1 and 32 bytes, inclusive");
        }

        this.sessionID = Arrays.clone(sessionID);
        this.sessionParameters = sessionParameters;
    }

    public synchronized SessionParameters exportSessionParameters()
    {
        return this.sessionParameters == null ? null : this.sessionParameters.copy();
    }

    public synchronized byte[] getSessionID()
    {
        return sessionID;
    }

    public synchronized void invalidate()
    {
        if (this.sessionParameters != null)
        {
            this.sessionParameters.clear();
            this.sessionParameters = null;
        }
    }

    public synchronized boolean isResumable()
    {
        return this.sessionParameters != null;
    }
}