summary refs log tree commit diff
path: root/crypto/src/crypto/tls/PskTlsClient.cs
blob: f6d83b5be90ba3224004880f74381b8225e6b8a3 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
using System;
using System.Collections;

namespace Org.BouncyCastle.Crypto.Tls
{
    public abstract class PskTlsClient
        :TlsClient
    {
        protected TlsCipherFactory cipherFactory;
        protected TlsPskIdentity pskIdentity;

        protected TlsClientContext context;

        protected byte selectedCompressionMethod;
        protected int selectedCipherSuite;

        public PskTlsClient(TlsPskIdentity pskIdentity)
            : this(new DefaultTlsCipherFactory(), pskIdentity)
        {
        }

        public PskTlsClient(TlsCipherFactory cipherFactory, TlsPskIdentity pskIdentity)
        {
            this.cipherFactory = cipherFactory;
            this.pskIdentity = pskIdentity;
        }

        public virtual void Init(TlsClientContext context)
        {
            this.context = context;
        }

        public virtual bool ShouldUseGmtUnixTime()
        {
            /*
             * draft-mathewson-no-gmtunixtime-00 2. For the reasons we discuss above, we recommend that
             * TLS implementors MUST by default set the entire value the ClientHello.Random and
             * ServerHello.Random fields, including gmt_unix_time, to a cryptographically random
             * sequence.
             */
            return false;
        }

        public virtual int[] GetCipherSuites()
        {
            return new int[] {
                CipherSuite.TLS_DHE_PSK_WITH_AES_256_CBC_SHA,
                CipherSuite.TLS_DHE_PSK_WITH_AES_128_CBC_SHA,
                CipherSuite.TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA,
                CipherSuite.TLS_DHE_PSK_WITH_RC4_128_SHA,
                CipherSuite.TLS_RSA_PSK_WITH_AES_256_CBC_SHA,
                CipherSuite.TLS_RSA_PSK_WITH_AES_128_CBC_SHA,
                CipherSuite.TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA,
                CipherSuite.TLS_RSA_PSK_WITH_RC4_128_SHA,
                CipherSuite.TLS_PSK_WITH_AES_256_CBC_SHA,
                CipherSuite.TLS_PSK_WITH_AES_128_CBC_SHA,
                CipherSuite.TLS_PSK_WITH_3DES_EDE_CBC_SHA,
                CipherSuite.TLS_PSK_WITH_RC4_128_SHA,
            };
        }

        public virtual IDictionary GetClientExtensions()
        {
            return null;
        }

        public virtual byte[] GetCompressionMethods()
        {
            return new byte[] { CompressionMethod.NULL };
        }

        public virtual void NotifySessionID(byte[] sessionID)
        {
            // Currently ignored 
        }

        public virtual void NotifySelectedCipherSuite(int selectedCipherSuite)
        {
            this.selectedCipherSuite = selectedCipherSuite;
        }

        public virtual void NotifySelectedCompressionMethod(byte selectedCompressionMethod)
        {
            this.selectedCompressionMethod = selectedCompressionMethod;
        }

        public virtual void NotifySecureRenegotiation(bool secureRenegotiation)
        {
            if (!secureRenegotiation)
            {
                /*
                 * RFC 5746 3.4. If the extension is not present, the server does not support
                 * secure renegotiation; set secure_renegotiation flag to FALSE. In this case,
                 * some clients may want to terminate the handshake instead of continuing; see
                 * Section 4.1 for discussion.
                 */
//				throw new TlsFatalAlert(AlertDescription.handshake_failure);
            }
        }

        public virtual void ProcessServerExtensions(IDictionary serverExtensions)
        {
        }

        public virtual TlsKeyExchange GetKeyExchange()
        {
            switch (selectedCipherSuite)
            {
                case CipherSuite.TLS_PSK_WITH_3DES_EDE_CBC_SHA:
                case CipherSuite.TLS_PSK_WITH_AES_128_CBC_SHA:
                case CipherSuite.TLS_PSK_WITH_AES_256_CBC_SHA:
                case CipherSuite.TLS_PSK_WITH_RC4_128_SHA:
                    return CreatePskKeyExchange(KeyExchangeAlgorithm.PSK);

                case CipherSuite.TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA:
                case CipherSuite.TLS_RSA_PSK_WITH_AES_128_CBC_SHA:
                case CipherSuite.TLS_RSA_PSK_WITH_AES_256_CBC_SHA:
                case CipherSuite.TLS_RSA_PSK_WITH_RC4_128_SHA:
                    return CreatePskKeyExchange(KeyExchangeAlgorithm.RSA_PSK);

                case CipherSuite.TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA:
                case CipherSuite.TLS_DHE_PSK_WITH_AES_128_CBC_SHA:
                case CipherSuite.TLS_DHE_PSK_WITH_AES_256_CBC_SHA:
                case CipherSuite.TLS_DHE_PSK_WITH_RC4_128_SHA:
                    return CreatePskKeyExchange(KeyExchangeAlgorithm.DHE_PSK);

                default:
                    /*
                     * Note: internal error here; the TlsProtocolHandler verifies that the
                     * server-selected cipher suite was in the list of client-offered cipher
                     * suites, so if we now can't produce an implementation, we shouldn't have
                     * offered it!
                     */
                    throw new TlsFatalAlert(AlertDescription.internal_error);
            }
        }

        public abstract TlsAuthentication GetAuthentication();

        public virtual TlsCompression GetCompression()
        {
            switch (selectedCompressionMethod)
            {
                case CompressionMethod.NULL:
                    return new TlsNullCompression();

                default:
                    /*
                     * Note: internal error here; the TlsProtocolHandler verifies that the
                     * server-selected compression method was in the list of client-offered compression
                     * methods, so if we now can't produce an implementation, we shouldn't have
                     * offered it!
                     */
                    throw new TlsFatalAlert(AlertDescription.internal_error);
            }
        }

        public virtual TlsCipher GetCipher()
        {
            switch (selectedCipherSuite)
            {
                case CipherSuite.TLS_PSK_WITH_3DES_EDE_CBC_SHA:
                case CipherSuite.TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA:
                case CipherSuite.TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA:
                    return cipherFactory.CreateCipher(context, EncryptionAlgorithm.cls_3DES_EDE_CBC,
                        MacAlgorithm.hmac_sha1);

                case CipherSuite.TLS_PSK_WITH_AES_128_CBC_SHA:
                case CipherSuite.TLS_RSA_PSK_WITH_AES_128_CBC_SHA:
                case CipherSuite.TLS_DHE_PSK_WITH_AES_128_CBC_SHA:
                    return cipherFactory.CreateCipher(context, EncryptionAlgorithm.AES_128_CBC,
                        MacAlgorithm.hmac_sha1);

                case CipherSuite.TLS_PSK_WITH_AES_256_CBC_SHA:
                case CipherSuite.TLS_RSA_PSK_WITH_AES_256_CBC_SHA:
                case CipherSuite.TLS_DHE_PSK_WITH_AES_256_CBC_SHA:
                    return cipherFactory.CreateCipher(context, EncryptionAlgorithm.AES_256_CBC,
                        MacAlgorithm.hmac_sha1);

                case CipherSuite.TLS_PSK_WITH_RC4_128_SHA:
                case CipherSuite.TLS_RSA_PSK_WITH_RC4_128_SHA:
                case CipherSuite.TLS_DHE_PSK_WITH_RC4_128_SHA:
                    return cipherFactory.CreateCipher(context, EncryptionAlgorithm.RC4_128,
                        MacAlgorithm.hmac_sha1);

                default:
                    /*
                     * Note: internal error here; the TlsProtocolHandler verifies that the
                     * server-selected cipher suite was in the list of client-offered cipher
                     * suites, so if we now can't produce an implementation, we shouldn't have
                     * offered it!
                     */
                    throw new TlsFatalAlert(AlertDescription.internal_error);
            }
        }

        protected virtual TlsKeyExchange CreatePskKeyExchange(int keyExchange)
        {
            return new TlsPskKeyExchange(context, keyExchange, pskIdentity);
        }
    }
}